Sha256: 5fbedbe9406cecd515a364e3fa9f89e48d81216afae8a25465295c06bd77d2d0

Contents?: true

Size: 659 Bytes

Versions: 12

Compression:

Stored size: 659 Bytes

Contents

require 'pathname'
require 'vagrant-spec/acceptance'

require_relative 'spec/shared/helpers/webserver_context'

Vagrant::Spec::Acceptance.configure do |c|
  acceptance_dir = Pathname.new File.expand_path('../acceptance', __FILE__)

  c.component_paths = [acceptance_dir.to_s]
  c.skeleton_paths = [(acceptance_dir + 'skeletons').to_s]

  c.provider 'virtualbox',
    boxes: Dir[acceptance_dir + 'artifacts' + '*-virtualbox.box'],
    # This folder should be filled with PE tarballs for CentOS.
    archive_path: (acceptance_dir + 'artifacts' + 'pe_archives').to_s,
    pe_latest: '2015.2.0',
    env_vars: {
      'VBOX_USER_HOME' => '{{homedir}}',
    }
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
vagrant-pe_build-0.15.0 vagrant-spec.config.example.rb
vagrant-pe_build-0.14.2 vagrant-spec.config.example.rb
vagrant-pe_build-0.14.1 vagrant-spec.config.example.rb
vagrant-pe_build-0.14.0 vagrant-spec.config.example.rb
vagrant-pe_build-0.13.7 vagrant-spec.config.example.rb
vagrant-pe_build-0.13.6 vagrant-spec.config.example.rb
vagrant-pe_build-0.13.5 vagrant-spec.config.example.rb
vagrant-pe_build-0.13.4 vagrant-spec.config.example.rb
vagrant-pe_build-0.13.3 vagrant-spec.config.example.rb
vagrant-pe_build-0.13.2 vagrant-spec.config.example.rb
vagrant-pe_build-0.13.1 vagrant-spec.config.example.rb
vagrant-pe_build-0.13.0 vagrant-spec.config.example.rb