Sha256: 0c5ef5bc52182201bae8d84c3bd8828344693a1dce9a06d2a073f8d1fc763818
Contents?: true
Size: 987 Bytes
Versions: 4
Compression:
Stored size: 987 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # plugins don't seem to be auto-loaded from the bundle require 'vagrant-puppet-install' Vagrant.configure("2") do |config| config.vm.define :ubuntu do |ubuntu| ubuntu.puppet_install.puppet_version = :latest ubuntu.vm.box = "precise64" ubuntu.vm.box_url = "http://files.vagrantup.com/precise64.box" ubuntu.vm.provision :puppet do |puppet| puppet.manifests_path = File.expand_path('../../../support/manifests', __FILE__) puppet.manifest_file = "base.pp" end end config.vm.define :centos do |centos| centos.puppet_install.puppet_version = :latest centos.vm.box = 'centos-64-x64-vbox4210-nocm' centos.vm.box_url = 'http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box' config.vm.provision :puppet do |puppet| puppet.manifests_path = File.expand_path('../../../support/manifests', __FILE__) puppet.manifest_file = "base.pp" end end end
Version data entries
4 entries across 4 versions & 1 rubygems