Class: Vagrant::Command::Provision
- Defined in:
- lib/vagrant/command/provision.rb
Instance Method Summary collapse
Methods inherited from Base
Methods included from Util::SafePuts
Constructor Details
This class inherits a constructor from Vagrant::Command::Base
Instance Method Details
#execute ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/vagrant/command/provision.rb', line 6 def execute = {} opts = OptionParser.new do |opts| opts. = "Usage: vagrant provision [vm-name]" end # Parse the options argv = (opts) return if !argv # Go over each VM and provision! @logger.debug("'provision' each target VM...") with_target_vms(argv) do |vm| if vm.created? if vm.state == :running @logger.info("Provisioning: #{vm.name}") vm.provision else @logger.info("#{vm.name} not running. Not provisioning.") vm.ui.info I18n.t("vagrant.commands.common.vm_not_running") end else @logger.info("#{vm.name} not created. Not provisioning.") vm.ui.info I18n.t("vagrant.commands.common.vm_not_created") end end # Success, exit status 0 0 end |