mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
13 lines
287 B
Python
13 lines
287 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):
|
|
super(PrintInfo, self).run(info)
|
|
print('info')
|