Sha256: 560405db5f52c0b934d2335b7b0d45c70f79dc5b47d16d349ddaf0503e7aac92

Contents?: true

Size: 783 Bytes

Versions: 10

Compression:

Stored size: 783 Bytes

Contents

Vagrant.configure('2') do |config|
  config.pe_build.download_root = ENV['PE_BUILD_DOWNLOAD_ROOT']
  config.vm.box = 'box'

  config.vm.define 'explicit-version' do |node|
    node.vm.provision :pe_bootstrap do |p|
      p.version = '3.2.3'
      p.role = :agent
      # Basically the stock answer file with:
      #   q_fail_on_unsuccessful_master_lookup=n
      p.answer_file = File.join(File.dirname(__FILE__), 'agent-3.x.txt.erb')
    end
  end

  config.vm.define 'latest-version' do |node|
    node.vm.provision :pe_bootstrap do |p|
      p.version_file = 'LATEST'
      p.role = :agent
      # Basically the stock answer file with:
      #   q_fail_on_unsuccessful_master_lookup=n
      p.answer_file = File.join(File.dirname(__FILE__), 'agent-3.x.txt.erb')
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
vagrant-pe_build-0.10.1 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.10.0 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.9.7 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.9.6 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.9.5 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.9.4 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.9.3 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.9.2 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.9.1 acceptance/skeletons/pe_build/Vagrantfile
vagrant-pe_build-0.9.0 acceptance/skeletons/pe_build/Vagrantfile