mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Change the order we clean up the apt state- thereby leaving a current as
of the image build set of apt list files on the resulting image.
This commit is contained in:
parent
e0553ee80d
commit
7484236282
1 changed files with 2 additions and 1 deletions
|
@ -40,7 +40,8 @@ class ImportGoogleKey(Task):
|
||||||
class CleanGoogleRepositoriesAndKeys(Task):
|
class CleanGoogleRepositoriesAndKeys(Task):
|
||||||
description = 'Removing Google key and apt source files'
|
description = 'Removing Google key and apt source files'
|
||||||
phase = phases.system_cleaning
|
phase = phases.system_cleaning
|
||||||
successors = [apt.AptClean, network.RemoveDNSInfo]
|
predecessors = [apt.AptClean]
|
||||||
|
successors = [network.RemoveDNSInfo]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
Loading…
Add table
Reference in a new issue