* apt-pkg/deb/dpkgpm.cc:
[ntk/apt.git] / apt-pkg / deb / dpkgpm.cc
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: dpkgpm.cc,v 1.28 2004/01/27 02:25:01 mdz Exp $
4 /* ######################################################################
5
6 DPKG Package Manager - Provide an interface to dpkg
7
8 ##################################################################### */
9 /*}}}*/
10 // Includes /*{{{*/
11 #ifdef __GNUG__
12 #pragma implementation "apt-pkg/dpkgpm.h"
13 #endif
14 #include <apt-pkg/dpkgpm.h>
15 #include <apt-pkg/error.h>
16 #include <apt-pkg/configuration.h>
17 #include <apt-pkg/depcache.h>
18 #include <apt-pkg/strutl.h>
19
20 #include <unistd.h>
21 #include <stdlib.h>
22 #include <fcntl.h>
23 #include <sys/types.h>
24 #include <sys/wait.h>
25 #include <signal.h>
26 #include <errno.h>
27 #include <stdio.h>
28 #include <sstream>
29 #include <map>
30
31 #include <config.h>
32 #include <apti18n.h>
33 /*}}}*/
34
35 using namespace std;
36
37 // DPkgPM::pkgDPkgPM - Constructor /*{{{*/
38 // ---------------------------------------------------------------------
39 /* */
40 pkgDPkgPM::pkgDPkgPM(pkgDepCache *Cache) : pkgPackageManager(Cache)
41 {
42 }
43 /*}}}*/
44 // DPkgPM::pkgDPkgPM - Destructor /*{{{*/
45 // ---------------------------------------------------------------------
46 /* */
47 pkgDPkgPM::~pkgDPkgPM()
48 {
49 }
50 /*}}}*/
51 // DPkgPM::Install - Install a package /*{{{*/
52 // ---------------------------------------------------------------------
53 /* Add an install operation to the sequence list */
54 bool pkgDPkgPM::Install(PkgIterator Pkg,string File)
55 {
56 if (File.empty() == true || Pkg.end() == true)
57 return _error->Error("Internal Error, No file name for %s",Pkg.Name());
58
59 List.push_back(Item(Item::Install,Pkg,File));
60 return true;
61 }
62 /*}}}*/
63 // DPkgPM::Configure - Configure a package /*{{{*/
64 // ---------------------------------------------------------------------
65 /* Add a configure operation to the sequence list */
66 bool pkgDPkgPM::Configure(PkgIterator Pkg)
67 {
68 if (Pkg.end() == true)
69 return false;
70
71 List.push_back(Item(Item::Configure,Pkg));
72 return true;
73 }
74 /*}}}*/
75 // DPkgPM::Remove - Remove a package /*{{{*/
76 // ---------------------------------------------------------------------
77 /* Add a remove operation to the sequence list */
78 bool pkgDPkgPM::Remove(PkgIterator Pkg,bool Purge)
79 {
80 if (Pkg.end() == true)
81 return false;
82
83 if (Purge == true)
84 List.push_back(Item(Item::Purge,Pkg));
85 else
86 List.push_back(Item(Item::Remove,Pkg));
87 return true;
88 }
89 /*}}}*/
90 // DPkgPM::RunScripts - Run a set of scripts /*{{{*/
91 // ---------------------------------------------------------------------
92 /* This looks for a list of script sto run from the configuration file,
93 each one is run with system from a forked child. */
94 bool pkgDPkgPM::RunScripts(const char *Cnf)
95 {
96 Configuration::Item const *Opts = _config->Tree(Cnf);
97 if (Opts == 0 || Opts->Child == 0)
98 return true;
99 Opts = Opts->Child;
100
101 // Fork for running the system calls
102 pid_t Child = ExecFork();
103
104 // This is the child
105 if (Child == 0)
106 {
107 if (chdir("/tmp/") != 0)
108 _exit(100);
109
110 unsigned int Count = 1;
111 for (; Opts != 0; Opts = Opts->Next, Count++)
112 {
113 if (Opts->Value.empty() == true)
114 continue;
115
116 if (system(Opts->Value.c_str()) != 0)
117 _exit(100+Count);
118 }
119 _exit(0);
120 }
121
122 // Wait for the child
123 int Status = 0;
124 while (waitpid(Child,&Status,0) != Child)
125 {
126 if (errno == EINTR)
127 continue;
128 return _error->Errno("waitpid","Couldn't wait for subprocess");
129 }
130
131 // Restore sig int/quit
132 signal(SIGQUIT,SIG_DFL);
133 signal(SIGINT,SIG_DFL);
134
135 // Check for an error code.
136 if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0)
137 {
138 unsigned int Count = WEXITSTATUS(Status);
139 if (Count > 100)
140 {
141 Count -= 100;
142 for (; Opts != 0 && Count != 1; Opts = Opts->Next, Count--);
143 _error->Error("Problem executing scripts %s '%s'",Cnf,Opts->Value.c_str());
144 }
145
146 return _error->Error("Sub-process returned an error code");
147 }
148
149 return true;
150 }
151 /*}}}*/
152 // DPkgPM::SendV2Pkgs - Send version 2 package info /*{{{*/
153 // ---------------------------------------------------------------------
154 /* This is part of the helper script communication interface, it sends
155 very complete information down to the other end of the pipe.*/
156 bool pkgDPkgPM::SendV2Pkgs(FILE *F)
157 {
158 fprintf(F,"VERSION 2\n");
159
160 /* Write out all of the configuration directives by walking the
161 configuration tree */
162 const Configuration::Item *Top = _config->Tree(0);
163 for (; Top != 0;)
164 {
165 if (Top->Value.empty() == false)
166 {
167 fprintf(F,"%s=%s\n",
168 QuoteString(Top->FullTag(),"=\"\n").c_str(),
169 QuoteString(Top->Value,"\n").c_str());
170 }
171
172 if (Top->Child != 0)
173 {
174 Top = Top->Child;
175 continue;
176 }
177
178 while (Top != 0 && Top->Next == 0)
179 Top = Top->Parent;
180 if (Top != 0)
181 Top = Top->Next;
182 }
183 fprintf(F,"\n");
184
185 // Write out the package actions in order.
186 for (vector<Item>::iterator I = List.begin(); I != List.end(); I++)
187 {
188 pkgDepCache::StateCache &S = Cache[I->Pkg];
189
190 fprintf(F,"%s ",I->Pkg.Name());
191 // Current version
192 if (I->Pkg->CurrentVer == 0)
193 fprintf(F,"- ");
194 else
195 fprintf(F,"%s ",I->Pkg.CurrentVer().VerStr());
196
197 // Show the compare operator
198 // Target version
199 if (S.InstallVer != 0)
200 {
201 int Comp = 2;
202 if (I->Pkg->CurrentVer != 0)
203 Comp = S.InstVerIter(Cache).CompareVer(I->Pkg.CurrentVer());
204 if (Comp < 0)
205 fprintf(F,"> ");
206 if (Comp == 0)
207 fprintf(F,"= ");
208 if (Comp > 0)
209 fprintf(F,"< ");
210 fprintf(F,"%s ",S.InstVerIter(Cache).VerStr());
211 }
212 else
213 fprintf(F,"> - ");
214
215 // Show the filename/operation
216 if (I->Op == Item::Install)
217 {
218 // No errors here..
219 if (I->File[0] != '/')
220 fprintf(F,"**ERROR**\n");
221 else
222 fprintf(F,"%s\n",I->File.c_str());
223 }
224 if (I->Op == Item::Configure)
225 fprintf(F,"**CONFIGURE**\n");
226 if (I->Op == Item::Remove ||
227 I->Op == Item::Purge)
228 fprintf(F,"**REMOVE**\n");
229
230 if (ferror(F) != 0)
231 return false;
232 }
233 return true;
234 }
235 /*}}}*/
236 // DPkgPM::RunScriptsWithPkgs - Run scripts with package names on stdin /*{{{*/
237 // ---------------------------------------------------------------------
238 /* This looks for a list of scripts to run from the configuration file
239 each one is run and is fed on standard input a list of all .deb files
240 that are due to be installed. */
241 bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf)
242 {
243 Configuration::Item const *Opts = _config->Tree(Cnf);
244 if (Opts == 0 || Opts->Child == 0)
245 return true;
246 Opts = Opts->Child;
247
248 unsigned int Count = 1;
249 for (; Opts != 0; Opts = Opts->Next, Count++)
250 {
251 if (Opts->Value.empty() == true)
252 continue;
253
254 // Determine the protocol version
255 string OptSec = Opts->Value;
256 string::size_type Pos;
257 if ((Pos = OptSec.find(' ')) == string::npos || Pos == 0)
258 Pos = OptSec.length();
259 OptSec = "DPkg::Tools::Options::" + string(Opts->Value.c_str(),Pos);
260
261 unsigned int Version = _config->FindI(OptSec+"::Version",1);
262
263 // Create the pipes
264 int Pipes[2];
265 if (pipe(Pipes) != 0)
266 return _error->Errno("pipe","Failed to create IPC pipe to subprocess");
267 SetCloseExec(Pipes[0],true);
268 SetCloseExec(Pipes[1],true);
269
270 // Purified Fork for running the script
271 pid_t Process = ExecFork();
272 if (Process == 0)
273 {
274 // Setup the FDs
275 dup2(Pipes[0],STDIN_FILENO);
276 SetCloseExec(STDOUT_FILENO,false);
277 SetCloseExec(STDIN_FILENO,false);
278 SetCloseExec(STDERR_FILENO,false);
279
280 const char *Args[4];
281 Args[0] = "/bin/sh";
282 Args[1] = "-c";
283 Args[2] = Opts->Value.c_str();
284 Args[3] = 0;
285 execv(Args[0],(char **)Args);
286 _exit(100);
287 }
288 close(Pipes[0]);
289 FILE *F = fdopen(Pipes[1],"w");
290 if (F == 0)
291 return _error->Errno("fdopen","Faild to open new FD");
292
293 // Feed it the filenames.
294 bool Die = false;
295 if (Version <= 1)
296 {
297 for (vector<Item>::iterator I = List.begin(); I != List.end(); I++)
298 {
299 // Only deal with packages to be installed from .deb
300 if (I->Op != Item::Install)
301 continue;
302
303 // No errors here..
304 if (I->File[0] != '/')
305 continue;
306
307 /* Feed the filename of each package that is pending install
308 into the pipe. */
309 fprintf(F,"%s\n",I->File.c_str());
310 if (ferror(F) != 0)
311 {
312 Die = true;
313 break;
314 }
315 }
316 }
317 else
318 Die = !SendV2Pkgs(F);
319
320 fclose(F);
321
322 // Clean up the sub process
323 if (ExecWait(Process,Opts->Value.c_str()) == false)
324 return _error->Error("Failure running script %s",Opts->Value.c_str());
325 }
326
327 return true;
328 }
329 /*}}}*/
330 // DPkgPM::Go - Run the sequence /*{{{*/
331 // ---------------------------------------------------------------------
332 /* This globs the operations and calls dpkg
333 *
334 * If it is called with "OutStatusFd" set to a valid file descriptor
335 * apt will report the install progress over this fd. It maps the
336 * dpkg states a package goes through to human readable (and i10n-able)
337 * names and calculates a percentage for each step.
338 */
339 bool pkgDPkgPM::Go(int OutStatusFd)
340 {
341 unsigned int MaxArgs = _config->FindI("Dpkg::MaxArgs",8*1024);
342 unsigned int MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",32*1024);
343
344 if (RunScripts("DPkg::Pre-Invoke") == false)
345 return false;
346
347 if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
348 return false;
349
350 // prepare the progress reporting
351 int Done = 0;
352 int Total = 0;
353 // map the dpkg states to the operations that are performed
354 // (this is sorted in the same way as Item::Ops)
355 static const struct DpkgState DpkgStatesOpMap[][5] = {
356 // Install operation
357 {
358 {"half-installed", N_("Preparing %s")},
359 {"unpacked", N_("Unpacking %s") },
360 {NULL, NULL}
361 },
362 // Configure operation
363 {
364 {"unpacked",N_("Preparing to configure %s") },
365 {"half-configured", N_("Configuring %s") },
366 { "installed", N_("Installed %s")},
367 {NULL, NULL}
368 },
369 // Remove operation
370 {
371 {"half-configured", N_("Preparing for removal of %s")},
372 {"half-installed", N_("Removing %s")},
373 {"config-files", N_("Removed %s")},
374 {NULL, NULL}
375 },
376 // Purge operation
377 {
378 {"config-files", N_("Preparing to completely remove %s")},
379 {"not-installed", N_("Completely removed %s")},
380 {NULL, NULL}
381 },
382 };
383
384 // the dpkg states that the pkg will run through, the string is
385 // the package, the vector contains the dpkg states that the package
386 // will go through
387 map<string,vector<struct DpkgState> > PackageOps;
388 // the dpkg states that are already done; the string is the package
389 // the int is the state that is already done (e.g. a package that is
390 // going to be install is already in state "half-installed")
391 map<string,int> PackageOpsDone;
392
393 // init the PackageOps map, go over the list of packages that
394 // that will be [installed|configured|removed|purged] and add
395 // them to the PackageOps map (the dpkg states it goes through)
396 // and the PackageOpsTranslations (human readable strings)
397 for (vector<Item>::iterator I = List.begin(); I != List.end();I++)
398 {
399 string name = (*I).Pkg.Name();
400 PackageOpsDone[name] = 0;
401 for(int i=0; (DpkgStatesOpMap[(*I).Op][i]).state != NULL; i++)
402 {
403 PackageOps[name].push_back(DpkgStatesOpMap[(*I).Op][i]);
404 Total++;
405 }
406 }
407
408 // this loop is runs once per operation
409 for (vector<Item>::iterator I = List.begin(); I != List.end();)
410 {
411 vector<Item>::iterator J = I;
412 for (; J != List.end() && J->Op == I->Op; J++);
413
414 // Generate the argument list
415 const char *Args[MaxArgs + 50];
416 if (J - I > (signed)MaxArgs)
417 J = I + MaxArgs;
418
419 unsigned int n = 0;
420 unsigned long Size = 0;
421 string Tmp = _config->Find("Dir::Bin::dpkg","dpkg");
422 Args[n++] = Tmp.c_str();
423 Size += strlen(Args[n-1]);
424
425 // Stick in any custom dpkg options
426 Configuration::Item const *Opts = _config->Tree("DPkg::Options");
427 if (Opts != 0)
428 {
429 Opts = Opts->Child;
430 for (; Opts != 0; Opts = Opts->Next)
431 {
432 if (Opts->Value.empty() == true)
433 continue;
434 Args[n++] = Opts->Value.c_str();
435 Size += Opts->Value.length();
436 }
437 }
438
439 char status_fd_buf[20];
440 int fd[2];
441 pipe(fd);
442
443 Args[n++] = "--status-fd";
444 Size += strlen(Args[n-1]);
445 snprintf(status_fd_buf,sizeof(status_fd_buf),"%i", fd[1]);
446 Args[n++] = status_fd_buf;
447 Size += strlen(Args[n-1]);
448
449 switch (I->Op)
450 {
451 case Item::Remove:
452 Args[n++] = "--force-depends";
453 Size += strlen(Args[n-1]);
454 Args[n++] = "--force-remove-essential";
455 Size += strlen(Args[n-1]);
456 Args[n++] = "--remove";
457 Size += strlen(Args[n-1]);
458 break;
459
460 case Item::Purge:
461 Args[n++] = "--force-depends";
462 Size += strlen(Args[n-1]);
463 Args[n++] = "--force-remove-essential";
464 Size += strlen(Args[n-1]);
465 Args[n++] = "--purge";
466 Size += strlen(Args[n-1]);
467 break;
468
469 case Item::Configure:
470 Args[n++] = "--configure";
471 Size += strlen(Args[n-1]);
472 break;
473
474 case Item::Install:
475 Args[n++] = "--unpack";
476 Size += strlen(Args[n-1]);
477 break;
478 }
479
480 // Write in the file or package names
481 if (I->Op == Item::Install)
482 {
483 for (;I != J && Size < MaxArgBytes; I++)
484 {
485 if (I->File[0] != '/')
486 return _error->Error("Internal Error, Pathname to install is not absolute '%s'",I->File.c_str());
487 Args[n++] = I->File.c_str();
488 Size += strlen(Args[n-1]);
489 }
490 }
491 else
492 {
493 for (;I != J && Size < MaxArgBytes; I++)
494 {
495 Args[n++] = I->Pkg.Name();
496 Size += strlen(Args[n-1]);
497 }
498 }
499 Args[n] = 0;
500 J = I;
501
502 if (_config->FindB("Debug::pkgDPkgPM",false) == true)
503 {
504 for (unsigned int k = 0; k != n; k++)
505 clog << Args[k] << ' ';
506 clog << endl;
507 continue;
508 }
509
510 cout << flush;
511 clog << flush;
512 cerr << flush;
513
514 /* Mask off sig int/quit. We do this because dpkg also does when
515 it forks scripts. What happens is that when you hit ctrl-c it sends
516 it to all processes in the group. Since dpkg ignores the signal
517 it doesn't die but we do! So we must also ignore it */
518 sighandler_t old_SIGQUIT = signal(SIGQUIT,SIG_IGN);
519 sighandler_t old_SIGINT = signal(SIGINT,SIG_IGN);
520
521 // Fork dpkg
522 pid_t Child;
523 _config->Set("APT::Keep-Fds::",fd[1]);
524 Child = ExecFork();
525
526 // This is the child
527 if (Child == 0)
528 {
529 close(fd[0]); // close the read end of the pipe
530
531 if (chdir(_config->FindDir("DPkg::Run-Directory","/").c_str()) != 0)
532 _exit(100);
533
534 if (_config->FindB("DPkg::FlushSTDIN",true) == true && isatty(STDIN_FILENO))
535 {
536 int Flags,dummy;
537 if ((Flags = fcntl(STDIN_FILENO,F_GETFL,dummy)) < 0)
538 _exit(100);
539
540 // Discard everything in stdin before forking dpkg
541 if (fcntl(STDIN_FILENO,F_SETFL,Flags | O_NONBLOCK) < 0)
542 _exit(100);
543
544 while (read(STDIN_FILENO,&dummy,1) == 1);
545
546 if (fcntl(STDIN_FILENO,F_SETFL,Flags & (~(long)O_NONBLOCK)) < 0)
547 _exit(100);
548 }
549
550 /* No Job Control Stop Env is a magic dpkg var that prevents it
551 from using sigstop */
552 putenv("DPKG_NO_TSTP=yes");
553 execvp(Args[0],(char **)Args);
554 cerr << "Could not exec dpkg!" << endl;
555 _exit(100);
556 }
557
558 // clear the Keep-Fd again
559 _config->Clear("APT::Keep-Fds",fd[1]);
560
561 // Wait for dpkg
562 int Status = 0;
563
564 // we read from dpkg here
565 int _dpkgin = fd[0];
566 fcntl(_dpkgin, F_SETFL, O_NONBLOCK);
567 close(fd[1]); // close the write end of the pipe
568
569 // the read buffers for the communication with dpkg
570 char line[1024] = {0,};
571 char buf[2] = {0,0};
572
573 // the result of the waitpid call
574 int res;
575
576 while ((res=waitpid(Child,&Status, WNOHANG)) != Child) {
577 if(res < 0) {
578 // FIXME: move this to a function or something, looks ugly here
579 // error handling, waitpid returned -1
580 if (errno == EINTR)
581 continue;
582 RunScripts("DPkg::Post-Invoke");
583
584 // Restore sig int/quit
585 signal(SIGQUIT,old_SIGQUIT);
586 signal(SIGINT,old_SIGINT);
587 return _error->Errno("waitpid","Couldn't wait for subprocess");
588 }
589
590 // read a single char, make sure that the read can't block
591 // (otherwise we may leave zombies)
592 int len = read(_dpkgin, buf, 1);
593
594 // nothing to read, wait a bit for more
595 if(len <= 0)
596 {
597 usleep(1000);
598 continue;
599 }
600
601 // sanity check (should never happen)
602 if(strlen(line) >= sizeof(line)-10)
603 {
604 _error->Error("got a overlong line from dpkg: '%s'",line);
605 line[0]=0;
606 }
607 // append to line, check if we got a complete line
608 strcat(line, buf);
609 if(buf[0] != '\n')
610 continue;
611
612 if (_config->FindB("Debug::pkgDPkgProgressReporting",false) == true)
613 std::clog << "got from dpkg '" << line << "'" << std::endl;
614
615 // the status we output
616 ostringstream status;
617
618 /* dpkg sends strings like this:
619 'status: <pkg>: <pkg qstate>'
620 errors look like this:
621 'status: /var/cache/apt/archives/krecipes_0.8.1-0ubuntu1_i386.deb : error : trying to overwrite `/usr/share/doc/kde/HTML/en/krecipes/krectip.png', which is also in package krecipes-data
622 and conffile-prompt like this
623 'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited
624
625 */
626 char* list[5];
627 if(!TokSplitString(':', line, list, sizeof(list)/sizeof(list[0])))
628 // FIXME: dpkg sends multiline error messages sometimes (see
629 // #374195 for a example. we should support this by
630 // either patching dpkg to not send multiline over the
631 // statusfd or by rewriting the code here to deal with
632 // it. for now we just ignore it and not crash
633 continue;
634 char *pkg = list[1];
635 char *action = _strstrip(list[2]);
636
637 if(strncmp(action,"error",strlen("error")) == 0)
638 {
639 status << "pmerror:" << list[1]
640 << ":" << (Done/float(Total)*100.0)
641 << ":" << list[3]
642 << endl;
643 if(OutStatusFd > 0)
644 write(OutStatusFd, status.str().c_str(), status.str().size());
645 line[0]=0;
646 if (_config->FindB("Debug::pkgDPkgProgressReporting",false) == true)
647 std::clog << "send: '" << status.str() << "'" << endl;
648 continue;
649 }
650 if(strncmp(action,"conffile",strlen("conffile")) == 0)
651 {
652 status << "pmconffile:" << list[1]
653 << ":" << (Done/float(Total)*100.0)
654 << ":" << list[3]
655 << endl;
656 if(OutStatusFd > 0)
657 write(OutStatusFd, status.str().c_str(), status.str().size());
658 line[0]=0;
659 if (_config->FindB("Debug::pkgDPkgProgressReporting",false) == true)
660 std::clog << "send: '" << status.str() << "'" << endl;
661 continue;
662 }
663
664 vector<struct DpkgState> &states = PackageOps[pkg];
665 const char *next_action = NULL;
666 if(PackageOpsDone[pkg] < states.size())
667 next_action = states[PackageOpsDone[pkg]].state;
668 // check if the package moved to the next dpkg state
669 if(next_action && (strcmp(action, next_action) == 0))
670 {
671 // only read the translation if there is actually a next
672 // action
673 const char *translation = _(states[PackageOpsDone[pkg]].str);
674 char s[200];
675 snprintf(s, sizeof(s), translation, pkg);
676
677 // we moved from one dpkg state to a new one, report that
678 PackageOpsDone[pkg]++;
679 Done++;
680 // build the status str
681 status << "pmstatus:" << pkg
682 << ":" << (Done/float(Total)*100.0)
683 << ":" << s
684 << endl;
685 if(OutStatusFd > 0)
686 write(OutStatusFd, status.str().c_str(), status.str().size());
687 if (_config->FindB("Debug::pkgDPkgProgressReporting",false) == true)
688 std::clog << "send: '" << status.str() << "'" << endl;
689
690 }
691 if (_config->FindB("Debug::pkgDPkgProgressReporting",false) == true)
692 std::clog << "(parsed from dpkg) pkg: " << pkg
693 << " action: " << action << endl;
694
695 // reset the line buffer
696 line[0]=0;
697 }
698 close(_dpkgin);
699
700 // Restore sig int/quit
701 signal(SIGQUIT,old_SIGQUIT);
702 signal(SIGINT,old_SIGINT);
703
704 // Check for an error code.
705 if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0)
706 {
707 RunScripts("DPkg::Post-Invoke");
708 if (WIFSIGNALED(Status) != 0 && WTERMSIG(Status) == SIGSEGV)
709 return _error->Error("Sub-process %s received a segmentation fault.",Args[0]);
710
711 if (WIFEXITED(Status) != 0)
712 return _error->Error("Sub-process %s returned an error code (%u)",Args[0],WEXITSTATUS(Status));
713
714 return _error->Error("Sub-process %s exited unexpectedly",Args[0]);
715 }
716 }
717
718 if (RunScripts("DPkg::Post-Invoke") == false)
719 return false;
720 return true;
721 }
722 /*}}}*/
723 // pkgDpkgPM::Reset - Dump the contents of the command list /*{{{*/
724 // ---------------------------------------------------------------------
725 /* */
726 void pkgDPkgPM::Reset()
727 {
728 List.erase(List.begin(),List.end());
729 }
730 /*}}}*/