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:
Zach Marano 2015-06-17 18:12:07 -07:00
parent e0553ee80d
commit 7484236282

View file

@ -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):