]> git.saurik.com Git - apt.git/commitdiff
Fixed a few minor dpkg settings
authorArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:52:37 +0000 (16:52 +0000)
committerArch Librarian <arch@canonical.com>
Mon, 20 Sep 2004 16:52:37 +0000 (16:52 +0000)
Author: jgg
Date: 1999-01-31 08:55:53 GMT
Fixed a few minor dpkg settings

apt-pkg/deb/dpkgpm.cc
doc/apt.conf.5.yo
doc/examples/apt.conf

index 9322a868d9d434e0d27197ba30818c392b3cfee9..3969aef22738361c3c8ed3937e37952f91b09c08 100644 (file)
@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description                                                         /*{{{*/
-// $Id: dpkgpm.cc,v 1.6 1999/01/31 08:49:39 jgg Exp $
+// $Id: dpkgpm.cc,v 1.7 1999/01/31 08:55:53 jgg Exp $
 /* ######################################################################
 
    DPKG Package Manager - Provide an interface to dpkg
@@ -140,7 +140,7 @@ bool pkgDPkgPM::RunScripts(const char *Cnf)
       {
         Count -= 100;
         for (; Opts != 0 && Count != 1; Opts = Opts->Next, Count--);
-        _error->Error("Probablem executing scripts %s '%s'",Cnf,Opts->Value.c_str());
+        _error->Error("Problem executing scripts %s '%s'",Cnf,Opts->Value.c_str());
       }
       
       return _error->Error("Sub-process returned an error code");
@@ -213,6 +213,8 @@ bool pkgDPkgPM::Go()
       {
         for (;I != J && Size < 1024; I++)
         {
+           if (I->File[0] != '/')
+              return _error->Error("Internal Error, Pathname to install is not absolute '%s'",I->File.c_str());
            Args[n++] = I->File.c_str();
            Size += strlen(Args[n-1]);
         }
@@ -262,7 +264,7 @@ bool pkgDPkgPM::Go()
         signal(SIGCONT,SIG_DFL);
         signal(SIGTSTP,SIG_DFL);
         
-        if (chdir(_config->FindDir("Dir::Cache::Archives").c_str()) != 0)
+        if (chdir(_config->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
            _exit(100);
         
         // Close all of our FDs - just in case
index feb7bbe53f20bd4746add3b94f4ffb41625494a3..89eb9e61efc8c7dfc36ec393cceb30baf5000df3 100644 (file)
@@ -165,8 +165,13 @@ This is a list of options to pass to dpkg. The options must be specified
 using the list notation and each list item is passed as a single arugment
 to dpkg.
 
-dit(bf(Pre-Invoke))
-This is a list of shell commands to run before invoking dpkg. 
+dit(bf(Pre-Invoke, (bf(Post-Invoke))
+This is a list of shell commands to run before/after invoking dpkg. Like 
+bf(Options) this must be specified in list notation. The commands
+are invoked in order using /bin/sh, should any fail APT will abort.
+
+dit(bf(Run-Directory))
+APT chdirs to this directory before invoking dpkg, the default is /.
 
 enddit()
 
index 9e92fd4543c90269c22b442b934351ce42f3f651..8cf5b0b17d41e20ab4ecbdbf4e16760b1787b4d2 100644 (file)
@@ -1,4 +1,4 @@
-// $Id: apt.conf,v 1.23 1999/01/31 08:49:39 jgg Exp $
+// $Id: apt.conf,v 1.24 1999/01/31 08:55:53 jgg Exp $
 /* This file is an index of all APT configuration directives. It should
    NOT actually be used as a real config file, though it is a completely
    valid file.
@@ -120,6 +120,7 @@ DPkg {
    Options {"--force-downgrade";}
    Pre-Invoke {"mount -o remount,rw /usr";};
    Post-Invoke {"mount -o remount,ro /usr";};
+   Run-Direcotry "/";
 }
 
 /* Options you can set to see some debugging text They corrispond to names