mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
9 lines
254 B
Python
9 lines
254 B
Python
|
|
|
|
def resolve_tasks(taskset, manifest):
|
|
import tasks
|
|
from bootstrapvz.common.tasks import apt
|
|
from bootstrapvz.common.releases import wheezy
|
|
if manifest.release == wheezy:
|
|
taskset.add(apt.AddBackports)
|
|
taskset.update([tasks.AddONEContextPackage])
|