Sha256: 15491daadc54a7cac91fb7c1291d51f3a870a54136d3cd7f4ea753ba634128e0

Contents?: true

Size: 352 Bytes

Versions: 10

Compression:

Stored size: 352 Bytes

Contents

module Vagrant
  module Actions
    module VM
      class Customize < Base
        def execute!
          logger.info "Running any VM customizations..."

          # Run the customization procs over the VM
          @runner.env.config.vm.run_procs!(@runner.vm)

          # Save the vm
          @runner.vm.save
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
vagrantup-0.3.4 lib/vagrant/actions/vm/customize.rb
vagrantup-0.3.3 lib/vagrant/actions/vm/customize.rb
vagrantup-0.3.2 lib/vagrant/actions/vm/customize.rb
vagrantup-0.3.1 lib/vagrant/actions/vm/customize.rb
vagrantup-0.3.0 lib/vagrant/actions/vm/customize.rb
vagrant-0.3.4 lib/vagrant/actions/vm/customize.rb
vagrant-0.3.3 lib/vagrant/actions/vm/customize.rb
vagrant-0.3.2 lib/vagrant/actions/vm/customize.rb
vagrant-0.3.1 lib/vagrant/actions/vm/customize.rb
vagrant-0.3.0 lib/vagrant/actions/vm/customize.rb