diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dnfu | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -129,9 +129,6 @@ function supgrade { ;; esac unset UFIN USTART - printf "Checking for outdated running services or necessity to reboot...:\n" - sudo "${UCMD}" needs-restarting -C --color true 2>&1|tee -a "$DLOG" - sudo "$UCMD" needs-restarting -r >/dev/null 2>&1 ||$LWCMD "Reboot required."||: } function snrefresh { rbeg "Refreshing snapd snaps" @@ -174,8 +171,12 @@ esac if [ "$UPDAVAIL" -eq 0 ];then supgrade fi +#printf "Checking for outdated running services or necessity to reboot...:\n" +sudo "${UCMD}" needs-restarting -C 2>/dev/null|grep -P '^[0-9]+[ ]+:'|wc -l +sudo "${UCMD}" needs-restarting -C -r --color true 2>&1|tee -a "$DLOG" +sudo "${UCMD}" needs-restarting -r >/dev/null 2>&1 ||$LWCMD "Reboot required."||: -if [ ! -z "$SCMD" ];then +if [ -e "$SCMD" ];then snrefresh fi $LCMD "Detailed logfile is located at $DLOG." |