--- toast	2003/12/10 06:22:00	1.267
+++ toast	2003/12/11 05:16:53	1.268
@@ -223,7 +223,7 @@
     "postarmprog" => superuser ? "/sbin/ldconfig" : "",
     "editprog" => "",
     "defaultcmd" => "help",
-    "verbose" => true,
+    "quiet" => false,
     "autofind" => true,
     "autochange" => true,
     "autorename" => true,
@@ -362,12 +362,12 @@
 
 sub explain(@)
 {
-  print("# @_\n") if verbose;
+  print("# @_\n") unless quiet;
 }
 
 sub announce(@)
 {
-  print("@_\n") if verbose;
+  print("@_\n") unless quiet;
 }
 
 ##############################################################################
@@ -2808,7 +2808,7 @@
     my(@times) = gettimes;
 
     open(STDERR, ">&STDOUT") || error("dup stdout: $!");
-    setopt("verbose", true);
+    setopt("quiet", false);
     nice(10);
     dropprivs;
     showprebuildinfo($name, $version, $build);
@@ -2836,7 +2836,7 @@
   {
     print LOG $_;
     chomp;
-    print("  $_\n") if verbose;
+    print("  $_\n") unless quiet;
   }
 
   my($success) = close(CHILD);
@@ -4160,7 +4160,7 @@
 
 sub selfconfigure(@)
 {
-  setopt("verbose", true);
+  setopt("quiet", false);
 
   my($prefix) = "/usr";
   my($arg);
@@ -5119,11 +5119,11 @@
 equivalent to running B<toast help>, regardless of this option's setting.
 Default: C<help>.
 
-=item S<B<--verbose> | B<--noverbose>>
+=item S<B<--quiet> | B<--noquiet>>
 
-Enables or disables verbose command output.  When disabled, most commands
-will produce output only on failure.  Some commands, such as B<toast
-status>, are not affected by this flag.  Default: enabled.
+When B<quiet> is enabled, most commands will produce output only on
+failure.  Some commands, such as B<toast status>, are not affected by
+this flag.  Default: disabled.
 
 =item S<B<--autofind> | B<--noautofind>>