Sha256: e8e4ce44156eecc363d7ef87ecb8a9207517cabf44e2913680df8eb3b07af1e9
Contents?: true
Size: 412 Bytes
Versions: 47
Compression:
Stored size: 412 Bytes
Contents
module Vagrant module Command class ProvisionCommand < NamedBase register "provision", "Rerun the provisioning scripts on a running VM" def execute target_vms.each do |vm| if vm.created? && vm.vm.running? vm.provision else vm.env.ui.info I18n.t("vagrant.commands.common.vm_not_created") end end end end end end
Version data entries
47 entries across 47 versions & 4 rubygems