Sha256: 578f070b27b47c9bcd4797b19b409bb172919821bff8785fb88c1802ec3ebace

Contents?: true

Size: 915 Bytes

Versions: 20

Compression:

Stored size: 915 Bytes

Contents

# -*- 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

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-retrospec-1.8.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.7.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.6.1 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.6.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.5.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.4.1 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.4.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.3.2 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.3.1 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.3.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.2.1 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.2.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.1.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-1.0.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-0.12.1 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-0.12.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-0.11.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-0.10.0 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-0.9.1 spec/fixtures/modules/staging/Vagrantfile
puppet-retrospec-0.9.0 spec/fixtures/modules/staging/Vagrantfile