Просмотр исходного кода

* cmdline/apt-get.cc:
- do not show simulation notice for non-root commands (Closes: #619072)

David Kalnischkies лет назад: 15
Родитель
Сommit
ede85dc09f
2 измененных файлов с 7 добавлено и 2 удалено
  1. 4 1
      cmdline/apt-get.cc
  2. 3 1
      debian/changelog

+ 4 - 1
cmdline/apt-get.cc

@@ -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"

+ 3 - 1
debian/changelog

@@ -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