From 4df22e79f121912dee5f0381ab75bb4aee7eb0f0 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sun, 3 May 2015 07:43:27 +0200 Subject: [PATCH] Move AddNtpPackage task into the preparation phase --- bootstrapvz/plugins/ntp/tasks.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bootstrapvz/plugins/ntp/tasks.py b/bootstrapvz/plugins/ntp/tasks.py index 12e69e5..a13c77b 100644 --- a/bootstrapvz/plugins/ntp/tasks.py +++ b/bootstrapvz/plugins/ntp/tasks.py @@ -1,12 +1,10 @@ from bootstrapvz.base import Task from bootstrapvz.common import phases -from bootstrapvz.common.tasks import packages class AddNtpPackage(Task): description = 'Adding NTP Package' - phase = phases.package_installation - successors = [packages.InstallPackages] + phase = phases.preparation @classmethod def run(cls, info):