diff options
-rwxr-xr-x | adu-download | 2 | ||||
-rwxr-xr-x | adu-upgrade | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/adu-download b/adu-download index ba021f7..987efa6 100755 --- a/adu-download +++ b/adu-download @@ -32,7 +32,7 @@ if [ "$upgrades" -eq 0 ]; then exit 0 fi -apt-get -qq upgrade -d +apt-get -q -y --with-new-pkgs --download-only upgrade ln -s -- "${UPDATE_TARGET}" "${UPDATE_SYMLINK}" 2>/dev/null || true echo "$upgrades updates available" diff --git a/adu-upgrade b/adu-upgrade index 81f6e90..5bcef27 100755 --- a/adu-upgrade +++ b/adu-upgrade @@ -42,7 +42,7 @@ if [ "$upgrades" -eq 0 ]; then fi # Do the update -apt-get upgrade -y --no-download --ignore-missing +apt-get -q -y --with-new-pkgs --no-download --ignore-missing upgrade # man:systemd.offline-updates(7): # "The update service should now do its job. [...] After completion |