Sha256: 4de949af649d8a8694392b5d1d23021589273c24f83baabbbcb5b6bd22138c9e

Contents?: true

Size: 657 Bytes

Versions: 2

Compression:

Stored size: 657 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',
    box: (acceptance_dir + 'artifacts' + 'virtualbox.box').to_s,
    # 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

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-pe_build-0.12.0 vagrant-spec.config.example.rb
vagrant-pe_build-0.11.0 vagrant-spec.config.example.rb