bootstrap-vz/bootstrapvz/providers/docker/tasks/commands.py
Anders Ingemann 4a509aba76 First stab at docker provider
Huh... That was easy.
2015-12-13 19:41:16 +01:00

13 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'