mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-12-17 07:10:21 +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'
|