mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +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):
|
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):
|
||||||
|
|
|
@ -9,7 +9,7 @@ import os
|
||||||
class SetPackageRepositories(Task):
|
class SetPackageRepositories(Task):
|
||||||
description = 'Adding apt sources'
|
description = 'Adding apt sources'
|
||||||
phase = phases.preparation
|
phase = phases.preparation
|
||||||
predecessors = [apt.AddManifestSources]
|
predecessors = [apt.AddManifestSources, apt.AddBackports]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
Loading…
Add table
Reference in a new issue