view modules/staging/Vagrantfile @ 246:c3fa3d65aa83

Update configs for Puppet 6 This *should* all be backward compatible
author IBBoard <dev@ibboard.co.uk>
date Sat, 21 Dec 2019 14:19:47 -0500
parents 58d1818c2ded
children
line wrap: on
line source

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  # All Vagrant configuration is done here. The most common configuration
  # options are documented and commented below. For a complete reference,
  # please see the online documentation at vagrantup.com.

  #config.vm.synced_folder "manifests", "/tmp/manifests", "tests"
  config.vm.synced_folder "./", "/etc/puppet/modules/staging"

  config.vm.define :staging do |m|
    m.vm.box = "centos63"
    m.vm.box_url = "https://dl.dropbox.com/s/eqdrqnla4na8qax/centos63.box"

    m.vm.hostname = 'staging'
    m.vm.provider :vmware_fusion do |v|
      v.vmx["displayName"] = "staging"
      v.vmx["memsize"] = 512
      v.vmx["numvcpus"] = 4
    end

    m.vm.provision :puppet do |puppet|
      puppet.manifests_path = "tests"
      puppet.module_path    = "spec/fixtures/modules/"
      puppet.manifest_file  = "init.pp"
    end
  end
end