Sha256: eaa35ed01699e340df15253c998ad5ba15b2ce4f90ae844fe626cbe3efe1ae4c
Contents?: true
Size: 526 Bytes
Versions: 53
Compression:
Stored size: 526 Bytes
Contents
module Vagrant module Command class UpCommand < NamedBase class_option :provision, :type => :boolean, :default => true register "up", "Creates the Vagrant environment" def execute target_vms.each do |vm| if vm.created? vm.env.ui.info I18n.t("vagrant.commands.up.vm_created") vm.start("provision.enabled" => options[:provision]) else vm.up("provision.enabled" => options[:provision]) end end end end end end
Version data entries
53 entries across 53 versions & 5 rubygems