๐Ÿ“ฆ mockersf / Pallas

๐Ÿ“„ Vagrantfile ยท 21 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21# -*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "ubuntu/trusty32"
  config.vm.synced_folder "../../Pallas", "/Pallas"

  config.vm.network "forwarded_port", guest: 7337, host: 7337
  config.vm.network "forwarded_port", guest: 5000, host: 5000

  config.vm.provision "puppet" do |puppet|
    puppet.manifests_path = 'puppet/manifests'
    puppet.manifest_file = 'site.pp'
    puppet.module_path = 'puppet/modules'
#    puppet.options="--verbose --debug"
  end

end