`vagrant provision`

This commit is contained in:
Mitchell Hashimoto 2010-08-24 23:27:08 -07:00
parent 4d56e68268
commit 3447dc4828
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
module Vagrant
module Command
class ProvisionCommand < Base
desc "Rerun the provisioning scripts on a running VM"
register "provision"
def execute
target_vms.each do |vm|
if vm.created? && vm.vm.running?
vm.provision
else
vm.env.ui.info "VM not created. Moving on..."
end
end
end
end
end
end