]> git.saurik.com Git - apt.git/commitdiff
support running "--simulate" as user
authorMichael Vogt <michael.vogt@ubuntu.com>
Mon, 29 Jun 2009 14:55:49 +0000 (16:55 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Mon, 29 Jun 2009 14:55:49 +0000 (16:55 +0200)
cmdline/apt-get.cc
debian/changelog
doc/apt-get.8.xml

index 028f371b5dcc614f4b556913cc0054964e7d0ab5..faad2ed6b146ccbe850a44838adb37068633f7e6 100644 (file)
@@ -2788,7 +2788,18 @@ int main(int argc,const char *argv[])
       ShowHelp(CmdL);
       return 0;
    }
       ShowHelp(CmdL);
       return 0;
    }
-   
+
+   // simulate user-friendly if apt-get has no root privileges
+   if (getuid() != 0 && _config->FindB("APT::Get::Simulate") == true)
+   {
+      cout << _("NOTE: This is only a simulation!\n"
+        "      apt-get needs root privileges for real execution.\n"
+        "      Keep also in mind that locking is deactivated,\n"
+        "      so don't depend on the relevance to the real current situation!"
+        ) << std::endl;
+      _config->Set("Debug::NoLocking",true);
+   }
+
    // Deal with stdout not being a tty
    if (!isatty(STDOUT_FILENO) && _config->FindI("quiet",0) < 1)
       _config->Set("quiet","1");
    // Deal with stdout not being a tty
    if (!isatty(STDOUT_FILENO) && _config->FindI("quiet",0) < 1)
       _config->Set("quiet","1");
index 28bc54108113b88b7f569e4780341e6b615633d5..f1cb7bd0c52917e7694c544d0eecfb001b22ea30 100644 (file)
@@ -21,6 +21,7 @@ apt (0.7.22) UNRELEASED; urgency=low
   * [ABI break] support '#' in apt.conf and /etc/apt/preferences
     (closes: #189866)
   * [ABI break] Allow pinning by codename (closes: #97564)
   * [ABI break] support '#' in apt.conf and /etc/apt/preferences
     (closes: #189866)
   * [ABI break] Allow pinning by codename (closes: #97564)
+  * support running "--simulate" as user
 
   [ Julian Andres Klode ]
   * apt-pkg/contrib/configuration.cc: Fix a small memory leak in
 
   [ Julian Andres Klode ]
   * apt-pkg/contrib/configuration.cc: Fix a small memory leak in
index c63b2a6c6364dc65a25e7d867a1ded13984efbf2..e7f6d7094468c27095200436a56989943cb82e29 100644 (file)
      actually change the system. 
      Configuration Item: <literal>APT::Get::Simulate</literal>.</para>
 
      actually change the system. 
      Configuration Item: <literal>APT::Get::Simulate</literal>.</para>
 
+     <para>Simulation run as user will deactivate locking (<literal>Debug::NoLocking</literal>)
+     automatical and display a notice indicating that this is only a simulation.
+     Neigther NoLocking nor the notice will be triggered if run as root (root should know what
+     he is doing without further warnings by <literal>apt-get</literal>).</para>
+
      <para>Simulate prints out
      a series of lines each one representing a dpkg operation, Configure (Conf),
      Remove (Remv), Unpack (Inst). Square brackets indicate broken packages with
      <para>Simulate prints out
      a series of lines each one representing a dpkg operation, Configure (Conf),
      Remove (Remv), Unpack (Inst). Square brackets indicate broken packages with