summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Wise <pabs@debian.org>2016-11-25 10:53:10 +0100
committerJulian Andres Klode <jak@debian.org>2017-02-22 16:53:45 +0100
commitc2ce13f26881d7e7ba8b1912c4f358d703fa85a8 (patch)
tree4514ed043f055dc9080bf9854e023f0262a0e324
parent8b32b53b58889488aafee8df82e87a6ed86e4848 (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 (cherry picked from commit 250687865e2d27dc949b810e59b07161a4c8f762)
-rwxr-xr-xdebian/apt.systemd.daily4
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"