]> git.saurik.com Git - apt.git/blame - apt-pkg/packagemanager.cc
glibc/libstdc++ dependency patches
[apt.git] / apt-pkg / packagemanager.cc
CommitLineData
6c139d6e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
b2e465d6 3// $Id: packagemanager.cc,v 1.26 2001/02/20 07:03:17 jgg Exp $
6c139d6e
AL
4/* ######################################################################
5
6 Package Manager - Abstacts the package manager
7
8 More work is needed in the area of transitioning provides, ie exim
9 replacing smail. This can cause interesing side effects.
10
11 Other cases involving conflicts+replaces should be tested.
12
13 ##################################################################### */
14 /*}}}*/
15// Include Files /*{{{*/
16#ifdef __GNUG__
094a497d 17#pragma implementation "apt-pkg/packagemanager.h"
6c139d6e 18#endif
b2e465d6 19
094a497d
AL
20#include <apt-pkg/packagemanager.h>
21#include <apt-pkg/orderlist.h>
22#include <apt-pkg/depcache.h>
23#include <apt-pkg/error.h>
24#include <apt-pkg/version.h>
03e39e59 25#include <apt-pkg/acquire-item.h>
30e1eab5
AL
26#include <apt-pkg/algorithms.h>
27#include <apt-pkg/configuration.h>
b2e465d6
AL
28#include <apt-pkg/sptr.h>
29
30#include <apti18n.h>
6c139d6e
AL
31 /*}}}*/
32
33// PM::PackageManager - Constructor /*{{{*/
34// ---------------------------------------------------------------------
35/* */
b2e465d6 36pkgPackageManager::pkgPackageManager(pkgDepCache *pCache) : Cache(*pCache)
6c139d6e
AL
37{
38 FileNames = new string[Cache.Head().PackageCount];
39 List = 0;
30e1eab5 40 Debug = _config->FindB("Debug::pkgPackageManager",false);
6c139d6e
AL
41}
42 /*}}}*/
43// PM::PackageManager - Destructor /*{{{*/
44// ---------------------------------------------------------------------
45/* */
46pkgPackageManager::~pkgPackageManager()
47{
48 delete List;
49 delete [] FileNames;
50}
51 /*}}}*/
03e39e59
AL
52// PM::GetArchives - Queue the archives for download /*{{{*/
53// ---------------------------------------------------------------------
54/* */
55bool pkgPackageManager::GetArchives(pkgAcquire *Owner,pkgSourceList *Sources,
56 pkgRecords *Recs)
57{
7a1b1f8b
AL
58 if (CreateOrderList() == false)
59 return false;
60
61 if (List->OrderUnpack() == false)
62 return _error->Error("Internal ordering error");
63
64 for (pkgOrderList::iterator I = List->begin(); I != List->end(); I++)
65 {
66 PkgIterator Pkg(Cache,*I);
281daf46
AL
67 FileNames[Pkg->ID] = string();
68
7a1b1f8b
AL
69 // Skip packages to erase
70 if (Cache[Pkg].Delete() == true)
03e39e59 71 continue;
d38b7b3d
AL
72
73 // Skip Packages that need configure only.
9dbb421f
AL
74 if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure &&
75 Cache[Pkg].Keep() == true)
d38b7b3d 76 continue;
281daf46
AL
77
78 // Skip already processed packages
79 if (List->IsNow(Pkg) == false)
80 continue;
81
7a1b1f8b
AL
82 new pkgAcqArchive(Owner,Sources,Recs,Cache[Pkg].InstVerIter(Cache),
83 FileNames[Pkg->ID]);
03e39e59 84 }
7a1b1f8b 85
03e39e59
AL
86 return true;
87}
88 /*}}}*/
6c139d6e
AL
89// PM::FixMissing - Keep all missing packages /*{{{*/
90// ---------------------------------------------------------------------
91/* This is called to correct the installation when packages could not
92 be downloaded. */
93bool pkgPackageManager::FixMissing()
bdae53f1 94{
b2e465d6 95 pkgProblemResolver Resolve(&Cache);
2fd65468
AL
96 List->SetFileList(FileNames);
97
9dbb421f 98 bool Bad = false;
6c139d6e
AL
99 for (PkgIterator I = Cache.PkgBegin(); I.end() == false; I++)
100 {
2fd65468 101 if (List->IsMissing(I) == false)
9dbb421f 102 continue;
2fd65468 103
9dbb421f
AL
104 // Okay, this file is missing and we need it. Mark it for keep
105 Bad = true;
6c139d6e
AL
106 Cache.MarkKeep(I);
107 }
bdae53f1
AL
108
109 // We have to empty the list otherwise it will not have the new changes
110 delete List;
111 List = 0;
6c139d6e 112
9dbb421f
AL
113 if (Bad == false)
114 return true;
115
6c139d6e 116 // Now downgrade everything that is broken
30e1eab5 117 return Resolve.ResolveByKeep() == true && Cache.BrokenCount() == 0;
6c139d6e
AL
118}
119 /*}}}*/
120
7a1b1f8b
AL
121// PM::CreateOrderList - Create the ordering class /*{{{*/
122// ---------------------------------------------------------------------
123/* This populates the ordering list with all the packages that are
124 going to change. */
125bool pkgPackageManager::CreateOrderList()
126{
281daf46
AL
127 if (List != 0)
128 return true;
129
7a1b1f8b 130 delete List;
b2e465d6 131 List = new pkgOrderList(&Cache);
7a1b1f8b 132
b780bc1b 133 bool NoImmConfigure = _config->FindB("APT::Immediate-Configure",false);
079cc404 134
7a1b1f8b
AL
135 // Generate the list of affected packages and sort it
136 for (PkgIterator I = Cache.PkgBegin(); I.end() == false; I++)
137 {
138d4b3d
AL
138 // Mark the package and its dependends for immediate configuration
139 if (((I->Flags & pkgCache::Flag::Essential) == pkgCache::Flag::Essential ||
140 (I->Flags & pkgCache::Flag::Important) == pkgCache::Flag::Important) &&
079cc404 141 NoImmConfigure == false)
7a1b1f8b
AL
142 {
143 List->Flag(I,pkgOrderList::Immediate);
d38b7b3d
AL
144
145 // Look for other packages to make immediate configurea
7a1b1f8b
AL
146 if (Cache[I].InstallVer != 0)
147 for (DepIterator D = Cache[I].InstVerIter(Cache).DependsList();
148 D.end() == false; D++)
149 if (D->Type == pkgCache::Dep::Depends || D->Type == pkgCache::Dep::PreDepends)
150 List->Flag(D.TargetPkg(),pkgOrderList::Immediate);
d38b7b3d
AL
151
152 // And again with the current version.
7a1b1f8b
AL
153 if (I->CurrentVer != 0)
154 for (DepIterator D = I.CurrentVer().DependsList();
155 D.end() == false; D++)
156 if (D->Type == pkgCache::Dep::Depends || D->Type == pkgCache::Dep::PreDepends)
157 List->Flag(D.TargetPkg(),pkgOrderList::Immediate);
158 }
159
160 // Not interesting
161 if ((Cache[I].Keep() == true ||
162 Cache[I].InstVerIter(Cache) == I.CurrentVer()) &&
d556d1a1 163 I.State() == pkgCache::PkgIterator::NeedsNothing &&
d0c59649 164 (Cache[I].iFlags & pkgDepCache::ReInstall) != pkgDepCache::ReInstall &&
d556d1a1
AL
165 (I.Purge() != false || Cache[I].Mode != pkgDepCache::ModeDelete ||
166 (Cache[I].iFlags & pkgDepCache::Purge) != pkgDepCache::Purge))
7a1b1f8b
AL
167 continue;
168
169 // Append it to the list
138d4b3d 170 List->push_back(I);
7a1b1f8b
AL
171 }
172
173 return true;
174}
175 /*}}}*/
6c139d6e
AL
176// PM::DepAlwaysTrue - Returns true if this dep is irrelevent /*{{{*/
177// ---------------------------------------------------------------------
178/* The restriction on provides is to eliminate the case when provides
179 are transitioning between valid states [ie exim to smail] */
180bool pkgPackageManager::DepAlwaysTrue(DepIterator D)
181{
182 if (D.TargetPkg()->ProvidesList != 0)
183 return false;
184
185 if ((Cache[D] & pkgDepCache::DepInstall) != 0 &&
186 (Cache[D] & pkgDepCache::DepNow) != 0)
187 return true;
188 return false;
189}
190 /*}}}*/
191// PM::CheckRConflicts - Look for reverse conflicts /*{{{*/
192// ---------------------------------------------------------------------
193/* This looks over the reverses for a conflicts line that needs early
194 removal. */
195bool pkgPackageManager::CheckRConflicts(PkgIterator Pkg,DepIterator D,
196 const char *Ver)
197{
198 for (;D.end() == false; D++)
199 {
b2e465d6
AL
200 if (D->Type != pkgCache::Dep::Conflicts &&
201 D->Type != pkgCache::Dep::Obsoletes)
6c139d6e 202 continue;
5af32db6
AL
203
204 // The package hasnt been changed
205 if (List->IsNow(Pkg) == false)
206 continue;
6c139d6e 207
5af32db6
AL
208 // Ignore self conflicts, ignore conflicts from irrelevent versions
209 if (D.ParentPkg() == Pkg || D.ParentVer() != D.ParentPkg().CurrentVer())
6c139d6e
AL
210 continue;
211
b2e465d6 212 if (Cache.VS().CheckDep(Ver,D->CompareOp,D.TargetVer()) == false)
6c139d6e 213 continue;
b2e465d6 214
6c139d6e 215 if (EarlyRemove(D.ParentPkg()) == false)
5af32db6
AL
216 return _error->Error("Reverse conflicts early remove for package '%s' failed",
217 Pkg.Name());
218 }
6c139d6e
AL
219 return true;
220}
221 /*}}}*/
222// PM::ConfigureAll - Run the all out configuration /*{{{*/
223// ---------------------------------------------------------------------
224/* This configures every package. It is assumed they are all unpacked and
225 that the final configuration is valid. */
226bool pkgPackageManager::ConfigureAll()
227{
b2e465d6 228 pkgOrderList OList(&Cache);
6c139d6e
AL
229
230 // Populate the order list
231 for (pkgOrderList::iterator I = List->begin(); I != List->end(); I++)
232 if (List->IsFlag(pkgCache::PkgIterator(Cache,*I),
233 pkgOrderList::UnPacked) == true)
234 OList.push_back(*I);
235
236 if (OList.OrderConfigure() == false)
237 return false;
238
239 // Perform the configuring
240 for (pkgOrderList::iterator I = OList.begin(); I != OList.end(); I++)
241 {
242 PkgIterator Pkg(Cache,*I);
243
244 if (Configure(Pkg) == false)
245 return false;
246
247 List->Flag(Pkg,pkgOrderList::Configured,pkgOrderList::States);
248 }
249
250 return true;
251}
252 /*}}}*/
253// PM::SmartConfigure - Perform immediate configuration of the pkg /*{{{*/
254// ---------------------------------------------------------------------
255/* This routine scheduals the configuration of the given package and all
256 of it's dependents. */
257bool pkgPackageManager::SmartConfigure(PkgIterator Pkg)
258{
b2e465d6 259 pkgOrderList OList(&Cache);
6c139d6e
AL
260
261 if (DepAdd(OList,Pkg) == false)
262 return false;
263
264 if (OList.OrderConfigure() == false)
265 return false;
b2e465d6 266
6c139d6e
AL
267 // Perform the configuring
268 for (pkgOrderList::iterator I = OList.begin(); I != OList.end(); I++)
269 {
270 PkgIterator Pkg(Cache,*I);
271
272 if (Configure(Pkg) == false)
273 return false;
274
275 List->Flag(Pkg,pkgOrderList::Configured,pkgOrderList::States);
276 }
277
278 // Sanity Check
279 if (List->IsFlag(Pkg,pkgOrderList::Configured) == false)
280 return _error->Error("Internal error, could not immediate configure %s",Pkg.Name());
281
282 return true;
283}
284 /*}}}*/
285// PM::DepAdd - Add all dependents to the oder list /*{{{*/
286// ---------------------------------------------------------------------
287/* This recursively adds all dependents to the order list */
288bool pkgPackageManager::DepAdd(pkgOrderList &OList,PkgIterator Pkg,int Depth)
289{
290 if (OList.IsFlag(Pkg,pkgOrderList::Added) == true)
291 return true;
292 if (List->IsFlag(Pkg,pkgOrderList::Configured) == true)
293 return true;
294 if (List->IsFlag(Pkg,pkgOrderList::UnPacked) == false)
295 return false;
b2e465d6 296
6c139d6e
AL
297 // Put the package on the list
298 OList.push_back(Pkg);
299 OList.Flag(Pkg,pkgOrderList::Added);
300 Depth++;
301
302 // Check the dependencies to see if they are all satisfied.
303 bool Bad = false;
304 for (DepIterator D = Cache[Pkg].InstVerIter(Cache).DependsList(); D.end() == false;)
305 {
b50b2c97 306 if (D->Type != pkgCache::Dep::Depends && D->Type != pkgCache::Dep::PreDepends)
6c139d6e
AL
307 {
308 D++;
309 continue;
310 }
311
312 // Grok or groups
313 Bad = true;
314 for (bool LastOR = true; D.end() == false && LastOR == true; D++)
315 {
b50b2c97 316 LastOR = (D->CompareOp & pkgCache::Dep::Or) == pkgCache::Dep::Or;
6c139d6e
AL
317
318 if (Bad == false)
319 continue;
320
b2e465d6 321 SPtrArray<Version *> VList = D.AllTargets();
6c139d6e
AL
322 for (Version **I = VList; *I != 0 && Bad == true; I++)
323 {
324 VerIterator Ver(Cache,*I);
325 PkgIterator Pkg = Ver.ParentPkg();
326
327 // See if the current version is ok
328 if (Pkg.CurrentVer() == Ver && List->IsNow(Pkg) == true &&
329 Pkg.State() == PkgIterator::NeedsNothing)
330 {
331 Bad = false;
332 continue;
333 }
334
335 // Not the install version
336 if (Cache[Pkg].InstallVer != *I ||
337 (Cache[Pkg].Keep() == true && Pkg.State() == PkgIterator::NeedsNothing))
338 continue;
b2e465d6 339
6c139d6e
AL
340 if (List->IsFlag(Pkg,pkgOrderList::UnPacked) == true)
341 Bad = !DepAdd(OList,Pkg,Depth);
342 if (List->IsFlag(Pkg,pkgOrderList::Configured) == true)
343 Bad = false;
344 }
6c139d6e
AL
345 }
346
347 if (Bad == true)
348 {
349 OList.Flag(Pkg,0,pkgOrderList::Added);
350 OList.pop_back();
351 Depth--;
352 return false;
353 }
354 }
355
356 Depth--;
357 return true;
358}
359 /*}}}*/
360// PM::EarlyRemove - Perform removal of packages before their time /*{{{*/
361// ---------------------------------------------------------------------
362/* This is called to deal with conflicts arising from unpacking */
363bool pkgPackageManager::EarlyRemove(PkgIterator Pkg)
364{
365 if (List->IsNow(Pkg) == false)
366 return true;
367
368 // Already removed it
369 if (List->IsFlag(Pkg,pkgOrderList::Removed) == true)
370 return true;
371
372 // Woops, it will not be re-installed!
373 if (List->IsFlag(Pkg,pkgOrderList::InList) == false)
374 return false;
9d4c8f67
AL
375
376 // Essential packages get special treatment
5af32db6 377 bool IsEssential = false;
9d4c8f67 378 if ((Pkg->Flags & pkgCache::Flag::Essential) != 0)
5af32db6
AL
379 IsEssential = true;
380
381 /* Check for packages that are the dependents of essential packages and
382 promote them too */
383 if (Pkg->CurrentVer != 0)
384 {
385 for (DepIterator D = Pkg.RevDependsList(); D.end() == false &&
386 IsEssential == false; D++)
387 if (D->Type == pkgCache::Dep::Depends || D->Type == pkgCache::Dep::PreDepends)
388 if ((D.ParentPkg()->Flags & pkgCache::Flag::Essential) != 0)
389 IsEssential = true;
390 }
391
392 if (IsEssential == true)
9d4c8f67
AL
393 {
394 if (_config->FindB("APT::Force-LoopBreak",false) == false)
b2e465d6
AL
395 return _error->Error(_("This installation run will require temporarily "
396 "removing the essential package %s due to a "
397 "Conflicts/Pre-Depends loop. This is often bad, "
398 "but if you really want to do it, activate the "
399 "APT::Force-LoopBreak option."),Pkg.Name());
9d4c8f67 400 }
6c139d6e
AL
401
402 bool Res = SmartRemove(Pkg);
403 if (Cache[Pkg].Delete() == false)
404 List->Flag(Pkg,pkgOrderList::Removed,pkgOrderList::States);
405
406 return Res;
407}
408 /*}}}*/
409// PM::SmartRemove - Removal Helper /*{{{*/
410// ---------------------------------------------------------------------
411/* */
412bool pkgPackageManager::SmartRemove(PkgIterator Pkg)
413{
414 if (List->IsNow(Pkg) == false)
415 return true;
416
417 List->Flag(Pkg,pkgOrderList::Configured,pkgOrderList::States);
fc4b5c9f 418 return Remove(Pkg,(Cache[Pkg].iFlags & pkgDepCache::Purge) == pkgDepCache::Purge);
6c139d6e
AL
419}
420 /*}}}*/
421// PM::SmartUnPack - Install helper /*{{{*/
422// ---------------------------------------------------------------------
423/* This performs the task of handling pre-depends. */
424bool pkgPackageManager::SmartUnPack(PkgIterator Pkg)
425{
426 // Check if it is already unpacked
427 if (Pkg.State() == pkgCache::PkgIterator::NeedsConfigure &&
428 Cache[Pkg].Keep() == true)
429 {
430 List->Flag(Pkg,pkgOrderList::UnPacked,pkgOrderList::States);
431 if (List->IsFlag(Pkg,pkgOrderList::Immediate) == true)
432 if (SmartConfigure(Pkg) == false)
b2e465d6 433 return _error->Error("Internal Error, Could not perform immediate configuration (1) on %s",Pkg.Name());
6c139d6e
AL
434 return true;
435 }
981d20eb 436
6c139d6e
AL
437 /* See if this packages install version has any predependencies
438 that are not met by 'now' packages. */
439 for (DepIterator D = Cache[Pkg].InstVerIter(Cache).DependsList();
421c8d10 440 D.end() == false; )
6c139d6e 441 {
421c8d10
AL
442 // Compute a single dependency element (glob or)
443 pkgCache::DepIterator Start;
444 pkgCache::DepIterator End;
445 D.GlobOr(Start,End);
446
447 while (End->Type == pkgCache::Dep::PreDepends)
6c139d6e
AL
448 {
449 // Look for possible ok targets.
b2e465d6 450 SPtrArray<Version *> VList = Start.AllTargets();
6c139d6e
AL
451 bool Bad = true;
452 for (Version **I = VList; *I != 0 && Bad == true; I++)
453 {
454 VerIterator Ver(Cache,*I);
455 PkgIterator Pkg = Ver.ParentPkg();
456
457 // See if the current version is ok
458 if (Pkg.CurrentVer() == Ver && List->IsNow(Pkg) == true &&
459 Pkg.State() == PkgIterator::NeedsNothing)
460 {
461 Bad = false;
462 continue;
463 }
464 }
465
466 // Look for something that could be configured.
467 for (Version **I = VList; *I != 0 && Bad == true; I++)
468 {
469 VerIterator Ver(Cache,*I);
470 PkgIterator Pkg = Ver.ParentPkg();
471
472 // Not the install version
473 if (Cache[Pkg].InstallVer != *I ||
474 (Cache[Pkg].Keep() == true && Pkg.State() == PkgIterator::NeedsNothing))
475 continue;
476
477 Bad = !SmartConfigure(Pkg);
478 }
479
421c8d10
AL
480 /* If this or element did not match then continue on to the
481 next or element until a matching element is found*/
482 if (Bad == true)
483 {
484 if (Start == End)
485 return _error->Error("Internal Error, Couldn't configure a pre-depend");
486 Start++;
487 }
488 else
489 break;
6c139d6e
AL
490 }
491
b2e465d6
AL
492 if (End->Type == pkgCache::Dep::Conflicts ||
493 End->Type == pkgCache::Dep::Obsoletes)
6c139d6e
AL
494 {
495 /* Look for conflicts. Two packages that are both in the install
496 state cannot conflict so we don't check.. */
b2e465d6 497 SPtrArray<Version *> VList = End.AllTargets();
6c139d6e
AL
498 for (Version **I = VList; *I != 0; I++)
499 {
500 VerIterator Ver(Cache,*I);
501 PkgIterator Pkg = Ver.ParentPkg();
502
503 // See if the current version is conflicting
504 if (Pkg.CurrentVer() == Ver && List->IsNow(Pkg) == true)
505 {
506 if (EarlyRemove(Pkg) == false)
507 return _error->Error("Internal Error, Could not early remove %s",Pkg.Name());
508 }
509 }
6c139d6e
AL
510 }
511 }
512
513 // Check for reverse conflicts.
5af32db6
AL
514 if (CheckRConflicts(Pkg,Pkg.RevDependsList(),
515 Cache[Pkg].InstVerIter(Cache).VerStr()) == false)
516 return false;
517
6c139d6e
AL
518 for (PrvIterator P = Cache[Pkg].InstVerIter(Cache).ProvidesList();
519 P.end() == false; P++)
520 CheckRConflicts(Pkg,P.ParentPkg().RevDependsList(),P.ProvideVersion());
521
522 if (Install(Pkg,FileNames[Pkg->ID]) == false)
523 return false;
524
525 List->Flag(Pkg,pkgOrderList::UnPacked,pkgOrderList::States);
526
527 // Perform immedate configuration of the package.
528 if (List->IsFlag(Pkg,pkgOrderList::Immediate) == true)
529 if (SmartConfigure(Pkg) == false)
b2e465d6 530 return _error->Error("Internal Error, Could not perform immediate configuration (2) on %s",Pkg.Name());
6c139d6e
AL
531
532 return true;
533}
534 /*}}}*/
535// PM::OrderInstall - Installation ordering routine /*{{{*/
536// ---------------------------------------------------------------------
537/* */
281daf46 538pkgPackageManager::OrderResult pkgPackageManager::OrderInstall()
6c139d6e 539{
7a1b1f8b 540 if (CreateOrderList() == false)
281daf46
AL
541 return Failed;
542
543 Reset();
6c139d6e 544
30e1eab5
AL
545 if (Debug == true)
546 clog << "Begining to order" << endl;
6c139d6e 547
281daf46
AL
548 if (List->OrderUnpack(FileNames) == false)
549 {
550 _error->Error("Internal ordering error");
551 return Failed;
552 }
553
30e1eab5
AL
554 if (Debug == true)
555 clog << "Done ordering" << endl;
556
281daf46 557 bool DoneSomething = false;
6c139d6e
AL
558 for (pkgOrderList::iterator I = List->begin(); I != List->end(); I++)
559 {
560 PkgIterator Pkg(Cache,*I);
281daf46
AL
561
562 if (List->IsNow(Pkg) == false)
563 {
564 if (Debug == true)
565 clog << "Skipping already done " << Pkg.Name() << endl;
566 continue;
567 }
568
2fd65468 569 if (List->IsMissing(Pkg) == true)
281daf46
AL
570 {
571 if (Debug == true)
a3eaf954 572 clog << "Sequence completed at " << Pkg.Name() << endl;
281daf46
AL
573 if (DoneSomething == false)
574 {
575 _error->Error("Internal Error, ordering was unable to handle the media swap");
576 return Failed;
577 }
578 return Incomplete;
579 }
6c139d6e
AL
580
581 // Sanity check
d0c59649
AL
582 if (Cache[Pkg].Keep() == true &&
583 Pkg.State() == pkgCache::PkgIterator::NeedsNothing &&
584 (Cache[Pkg].iFlags & pkgDepCache::ReInstall) != pkgDepCache::ReInstall)
281daf46
AL
585 {
586 _error->Error("Internal Error, trying to manipulate a kept package");
587 return Failed;
588 }
6c139d6e
AL
589
590 // Perform a delete or an install
591 if (Cache[Pkg].Delete() == true)
592 {
593 if (SmartRemove(Pkg) == false)
281daf46 594 return Failed;
6c139d6e
AL
595 }
596 else
597 if (SmartUnPack(Pkg) == false)
281daf46
AL
598 return Failed;
599 DoneSomething = true;
6c139d6e
AL
600 }
601
602 // Final run through the configure phase
603 if (ConfigureAll() == false)
281daf46 604 return Failed;
6c139d6e
AL
605
606 // Sanity check
607 for (pkgOrderList::iterator I = List->begin(); I != List->end(); I++)
281daf46 608 {
6c139d6e 609 if (List->IsFlag(*I,pkgOrderList::Configured) == false)
281daf46
AL
610 {
611 _error->Error("Internal error, packages left unconfigured. %s",
612 PkgIterator(Cache,*I).Name());
613 return Failed;
614 }
615 }
616
617 return Completed;
6c139d6e
AL
618}
619 /*}}}*/
620// PM::DoInstall - Does the installation /*{{{*/
621// ---------------------------------------------------------------------
622/* This uses the filenames in FileNames and the information in the
623 DepCache to perform the installation of packages.*/
281daf46 624pkgPackageManager::OrderResult pkgPackageManager::DoInstall()
6c139d6e 625{
281daf46
AL
626 OrderResult Res = OrderInstall();
627 if (Res != Failed)
628 if (Go() == false)
629 return Failed;
630 return Res;
6c139d6e
AL
631}
632 /*}}}*/