bootstrap-vz/providers/ec2/__init__.py

19 lines
433 B
Python
Raw Normal View History

2013-05-16 08:00:28 +02:00
from manifest import Manifest
def tasklist(manifest):
from common import TaskList
import packages
import ec2
import host
task_list = TaskList()
task_list.extend([packages.HostPackages(),
packages.ImagePackages(),
ec2.GetCredentials(),
host.GetInfo(),
ec2.Connect(),
host.InstallPackages()
])
return task_list