mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
9 lines
283 B
Python
9 lines
283 B
Python
|
|
|
|
def resolve_tasks(taskset, manifest):
|
|
import tasks
|
|
from bootstrapvz.common.tasks import apt
|
|
from bootstrapvz.common.tools import get_codename
|
|
if get_codename(manifest.system['release']) == 'wheezy':
|
|
taskset.add(apt.AddBackports)
|
|
taskset.update([tasks.AddONEContextPackage])
|