2020-03-30 17:41:49 -04:00

14 lines
219 B
Ruby

module VagrantPlugins
module ContainerProvisioner
class Installer
def initialize(machine)
@machine = machine
end
def ensure_installed
# nothing to do
end
end
end
end