]> git.saurik.com Git - apt.git/commitdiff
add the possibility to disable only the progress reporting stuff as the
authorDavid Kalnischkies <kalnischkies@gmail.com>
Tue, 30 Nov 2010 17:57:42 +0000 (18:57 +0100)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Tue, 30 Nov 2010 17:57:42 +0000 (18:57 +0100)
quiet level 1 does this, but also disables other stuff we might want to
test against in a testcase

apt-pkg/contrib/progress.cc
doc/examples/configure-index

index cffdddc4fe0d70a9f45e3fc5fadd3c73c7944168..45e81edcb3ca3ab7b7f877f799cf7fb1aa9b9633 100644 (file)
@@ -135,7 +135,7 @@ bool OpProgress::CheckChange(float Interval)
 OpTextProgress::OpTextProgress(Configuration &Config) : 
                                NoUpdate(false), NoDisplay(false), LastLen(0) 
 {
-   if (Config.FindI("quiet",0) >= 1)
+   if (Config.FindI("quiet",0) >= 1 || Config.FindB("quiet::NoUpdate", false) == true)
       NoUpdate = true;
    if (Config.FindI("quiet",0) >= 2)
       NoDisplay = true;
index c4c2acb6427e64079756456e11ed403962e120f9..6c078d75fcfc091a031a3454f33e0a4249dbab7d 100644 (file)
@@ -17,6 +17,7 @@
 */
 
 quiet "0";
+quiet::NoUpdate "true"; // never update progress information - included in -q=1
 
 // Options for APT in general
 APT