mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-11 09:30:30 +00:00
Merge pull request #102 from Jimdo/fix-issue-with-apt-preferences
AptUpdate has to explicitly depend on WritePreferences
This commit is contained in:
commit
14b7f84305
1 changed files with 1 additions and 2 deletions
|
@ -76,7 +76,6 @@ class WriteSources(Task):
|
||||||
class WritePreferences(Task):
|
class WritePreferences(Task):
|
||||||
description = 'Writing aptitude preferences to disk'
|
description = 'Writing aptitude preferences to disk'
|
||||||
phase = phases.package_installation
|
phase = phases.package_installation
|
||||||
predecessors = [WriteSources]
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
@ -110,7 +109,7 @@ class DisableDaemonAutostart(Task):
|
||||||
class AptUpdate(Task):
|
class AptUpdate(Task):
|
||||||
description = 'Updating the package cache'
|
description = 'Updating the package cache'
|
||||||
phase = phases.package_installation
|
phase = phases.package_installation
|
||||||
predecessors = [locale.GenerateLocale, WriteSources]
|
predecessors = [locale.GenerateLocale, WriteSources, WritePreferences]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
Loading…
Add table
Reference in a new issue