Merge pull request #229 from zmarano/master

Change the order we clean up the apt state for GCE images.
This commit is contained in:
Anders Ingemann 2015-06-18 08:32:34 +02:00
commit 9530f8987e

View file

@ -40,7 +40,8 @@ class ImportGoogleKey(Task):
class CleanGoogleRepositoriesAndKeys(Task):
description = 'Removing Google key and apt source files'
phase = phases.system_cleaning
successors = [apt.AptClean, network.RemoveDNSInfo]
predecessors = [apt.AptClean]
successors = [network.RemoveDNSInfo]
@classmethod
def run(cls, info):