Move AddNtpPackage task into the preparation phase

This commit is contained in:
Anders Ingemann 2015-05-03 07:43:27 +02:00
parent f88a1b0af5
commit 4df22e79f1

View file

@ -1,12 +1,10 @@
from bootstrapvz.base import Task from bootstrapvz.base import Task
from bootstrapvz.common import phases from bootstrapvz.common import phases
from bootstrapvz.common.tasks import packages
class AddNtpPackage(Task): class AddNtpPackage(Task):
description = 'Adding NTP Package' description = 'Adding NTP Package'
phase = phases.package_installation phase = phases.preparation
successors = [packages.InstallPackages]
@classmethod @classmethod
def run(cls, info): def run(cls, info):