mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
Merge pull request #146 from wrigri/development
Fix task ordering to better support customizations
This commit is contained in:
commit
8076ad3ae1
2 changed files with 2 additions and 2 deletions
|
@ -128,7 +128,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):
|
||||
|
|
|
@ -9,7 +9,7 @@ import os
|
|||
class SetPackageRepositories(Task):
|
||||
description = 'Adding apt sources'
|
||||
phase = phases.preparation
|
||||
predecessors = [apt.AddManifestSources]
|
||||
predecessors = [apt.AddManifestSources, apt.AddBackports]
|
||||
|
||||
@classmethod
|
||||
def run(cls, info):
|
||||
|
|
Loading…
Add table
Reference in a new issue