mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
16 lines
464 B
Python
16 lines
464 B
Python
from manifest import Manifest
|
|
|
|
|
|
def modify_tasklist(tasklist, manifest):
|
|
from tasks import packages
|
|
from tasks import ec2
|
|
from tasks import host
|
|
from tasks import ebs
|
|
tasklist.extend([packages.HostPackages(),
|
|
packages.ImagePackages(),
|
|
host.CheckPackages(),
|
|
ec2.GetCredentials(),
|
|
host.GetInfo(),
|
|
ec2.Connect(),
|
|
ebs.CreateVolume(),
|
|
])
|