* cmdline/apt-get.cc:
authorDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 26 Mar 2011 11:53:51 +0000 (12:53 +0100)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 26 Mar 2011 11:53:51 +0000 (12:53 +0100)
  - do not show simulation notice for non-root commands (Closes: #619072)

cmdline/apt-get.cc
debian/changelog

index 6a30c5a..c793b67 100644 (file)
@@ -3278,7 +3278,10 @@ int main(int argc,const char *argv[])                                    /*{{{*/
    }
 
    // simulate user-friendly if apt-get has no root privileges
-   if (getuid() != 0 && _config->FindB("APT::Get::Simulate") == true)
+   if (getuid() != 0 && _config->FindB("APT::Get::Simulate") == true &&
+       (CmdL.FileSize() == 0 ||
+        (strcmp(CmdL.FileList[0], "source") != 0 && strcmp(CmdL.FileList[0], "download") != 0 &&
+         strcmp(CmdL.FileList[0], "changelog") != 0)))
    {
       if (_config->FindB("APT::Get::Show-User-Simulation-Note",true) == true)
         cout << _("NOTE: This is only a simulation!\n"
index 2af2517..8e15a80 100644 (file)
@@ -25,8 +25,10 @@ apt (0.8.13.1) UNRELEASED; urgency=low
   * apt-pkg/aptconfiguration.cc:
     - use dpkg --print-foreign-architectures to get multiarch configuration
       if non is specified with APT::Architectures (Closes: #612958)
+  * cmdline/apt-get.cc:
+    - do not show simulation notice for non-root commands (Closes: #619072)
 
- -- David Kalnischkies <kalnischkies@gmail.com>  Sat, 26 Mar 2011 12:26:32 +0100
+ -- David Kalnischkies <kalnischkies@gmail.com>  Sat, 26 Mar 2011 12:53:00 +0100
 
 apt (0.8.13) unstable; urgency=low