Sha256: b9be4a4cd1b3a208e4fba8ef651c577182a57156b52058acde79d82c28b6917f
Contents?: true
Size: 1007 Bytes
Versions: 14
Compression:
Stored size: 1007 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : VAGRANTFILE_API_VERSION = '2' Vagrant.require_version '>= 1.8.0' Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Using Puppet Labs official Vagrant boxes, from: https://atlas.hashicorp.com/puppetlabs config.vm.box = 'puppetlabs/ubuntu-14.04-64-puppet' config.vm.provider 'virtualbox' do |vbox| vbox.memory = 1024 # vbox.cpus = 2 end if Vagrant.has_plugin?('vagrant-cachier') config.cache.scope = :box end config.vm.provision :shell, :path => '.vagrant_puppet/init.sh' config.vm.provision :puppet do |puppet| puppet.environment_path = '.vagrant_puppet/environments' puppet.environment = 'vagrant' puppet.options = '--verbose' end config.vm.provision :serverspec do |spec| spec.pattern = 'serverspec/*_spec.rb' end end unless Vagrant.has_plugin?('vagrant-serverspec') raise "\n\n'vagrant-serverspec' is NOT installed." + "\nTo install, run: 'vagrant plugin install vagrant-serverspec'." end
Version data entries
14 entries across 14 versions & 1 rubygems