diff options
author | Paul Wise <pabs@debian.org> | 2016-11-25 10:53:10 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2016-11-25 13:05:44 +0100 |
commit | 250687865e2d27dc949b810e59b07161a4c8f762 (patch) | |
tree | bbb940b30449bc195638c2088b5deda57e0615ea /debian/apt.systemd.daily | |
parent | e1ae0531bfad0fce8590c26d1e38825df22d812a (diff) |
show output as documented for APT::Periodic::Verbose 2
The documentation of APT::Periodic::Verbose doesn't match the code,
specifically level 2 should apply some things differently to level 1
but does not because it uses `-le 2` instead of `-lt 2` or `-le 1`.
Closes: 845599
Diffstat (limited to 'debian/apt.systemd.daily')
-rwxr-xr-x | debian/apt.systemd.daily | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/apt.systemd.daily b/debian/apt.systemd.daily index d034d8c1a..03d41bae5 100755 --- a/debian/apt.systemd.daily +++ b/debian/apt.systemd.daily @@ -320,8 +320,8 @@ fi VERBOSE=0 eval $(apt-config shell VERBOSE APT::Periodic::Verbose) debug_echo "verbose level $VERBOSE" -if [ "$VERBOSE" -le 2 ]; then - # quiet for 0,1,2 +if [ "$VERBOSE" -le 1 ]; then + # quiet for 0/1 XSTDOUT=">/dev/null" XSTDERR="2>/dev/null" XAPTOPT="-qq" |