mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-10 09:09:50 +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):
|
||||
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):
|
||||
|
|
Loading…
Add table
Reference in a new issue