mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
14 lines
358 B
Python
14 lines
358 B
Python
![]() |
from bootstrapvz.base import Task
|
||
|
from bootstrapvz.common import phases
|
||
|
from bootstrapvz.common.tasks import host
|
||
|
|
||
|
|
||
|
class AddRequiredCommands(Task):
|
||
|
description = 'Adding commands required for docker'
|
||
|
phase = phases.preparation
|
||
|
successors = [host.CheckExternalCommands]
|
||
|
|
||
|
@classmethod
|
||
|
def run(cls, info):
|
||
|
info.host_dependencies['docker'] = 'docker.io'
|