bootstrap-vz/plugins/build_metadata/buildmetadata.py
2013-07-08 23:14:01 +02:00

12 lines
252 B
Python

from base import Task
from common import phases
from providers.ec2.tasks.host import GetInfo
class PrintInfo(Task):
description = 'Printing `info\' to the console'
phase = phases.install_os
after = [GetInfo]
def run(self, info):
print('info')