diff --git a/bootstrapvz/providers/gce/tasks/apt.py b/bootstrapvz/providers/gce/tasks/apt.py index 229656a..c66e6fd 100644 --- a/bootstrapvz/providers/gce/tasks/apt.py +++ b/bootstrapvz/providers/gce/tasks/apt.py @@ -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):