mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
14 lines
404 B
Python
14 lines
404 B
Python
from manifest import Manifest
|
|
|
|
|
|
def modify_tasklist(tasklist, manifest):
|
|
from tasks import packages
|
|
from tasks import ec2
|
|
from tasks import host
|
|
tasklist.extend([packages.HostPackages(),
|
|
packages.ImagePackages(),
|
|
ec2.GetCredentials(),
|
|
host.GetInfo(),
|
|
ec2.Connect(),
|
|
host.InstallPackages()
|
|
])
|