diff --git a/bootstrapvz/common/tasks/apt.py b/bootstrapvz/common/tasks/apt.py index 0d3faef..91ae553 100644 --- a/bootstrapvz/common/tasks/apt.py +++ b/bootstrapvz/common/tasks/apt.py @@ -76,7 +76,6 @@ class WriteSources(Task): class WritePreferences(Task): description = 'Writing aptitude preferences to disk' phase = phases.package_installation - predecessors = [WriteSources] @classmethod def run(cls, info): @@ -110,7 +109,7 @@ class DisableDaemonAutostart(Task): class AptUpdate(Task): description = 'Updating the package cache' phase = phases.package_installation - predecessors = [locale.GenerateLocale, WriteSources] + predecessors = [locale.GenerateLocale, WriteSources, WritePreferences] @classmethod def run(cls, info):