diff --git a/common/tasks/development.py b/common/tasks/development.py index 24dcb65..cf8a546 100644 --- a/common/tasks/development.py +++ b/common/tasks/development.py @@ -1,5 +1,5 @@ from base import Task -import phases +from common import phases class TriggerRollback(Task): diff --git a/plugins/image_commands/tasks.py b/plugins/image_commands/tasks.py index 619186c..667d63d 100644 --- a/plugins/image_commands/tasks.py +++ b/plugins/image_commands/tasks.py @@ -1,12 +1,10 @@ from base import Task from common import phases -from plugins.packages import tasks as packages class ImageExecuteCommand(Task): description = 'Execute command in the image' phase = phases.system_modification - predecessors = [packages.AddUserPackages, packages.AddLocalUserPackages] def run(self, info): from common.tools import log_check_call