mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
Minor import stmt and dependency fix
This commit is contained in:
parent
44b23c9cd8
commit
27c0346455
2 changed files with 1 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
from base import Task
|
from base import Task
|
||||||
import phases
|
from common import phases
|
||||||
|
|
||||||
|
|
||||||
class TriggerRollback(Task):
|
class TriggerRollback(Task):
|
||||||
|
|
|
@ -1,12 +1,10 @@
|
||||||
from base import Task
|
from base import Task
|
||||||
from common import phases
|
from common import phases
|
||||||
from plugins.packages import tasks as packages
|
|
||||||
|
|
||||||
|
|
||||||
class ImageExecuteCommand(Task):
|
class ImageExecuteCommand(Task):
|
||||||
description = 'Execute command in the image'
|
description = 'Execute command in the image'
|
||||||
phase = phases.system_modification
|
phase = phases.system_modification
|
||||||
predecessors = [packages.AddUserPackages, packages.AddLocalUserPackages]
|
|
||||||
|
|
||||||
def run(self, info):
|
def run(self, info):
|
||||||
from common.tools import log_check_call
|
from common.tools import log_check_call
|
||||||
|
|
Loading…
Add table
Reference in a new issue