mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
13 lines
468 B
Python
13 lines
468 B
Python
|
|
|
|
def tasks(tasklist, manifest):
|
|
from tasks import CreateVolumeFromSnapshot
|
|
from providers.ec2.tasks import ebs
|
|
from providers.ec2.tasks import bootstrap
|
|
from providers.ec2.tasks import filesystem
|
|
tasklist.replace(ebs.CreateVolume, CreateVolumeFromSnapshot())
|
|
tasklist.remove(filesystem.FormatVolume,
|
|
filesystem.TuneVolumeFS,
|
|
filesystem.AddXFSProgs,
|
|
bootstrap.MakeTarball,
|
|
bootstrap.Bootstrap)
|