bootstrap-vz/plugins/build_metadata/buildmetadata.py

12 lines
222 B
Python
Raw Normal View History

2013-06-09 16:25:59 +02:00
from base import Task
from common import phases
2013-05-16 08:00:28 +02:00
class PrintInfo(Task):
2013-06-09 20:29:54 +02:00
description = 'Printing `info\' to the console'
phase = phases.InstallOS
2013-06-09 20:29:54 +02:00
2013-05-16 08:00:28 +02:00
def run(self, info):
super(PrintInfo, self).run(info)
print('info')