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

11 lines
222 B
Python

from base import Task
from common import phases
class PrintInfo(Task):
description = 'Printing `info\' to the console'
phase = phases.InstallOS
def run(self, info):
super(PrintInfo, self).run(info)
print('info')