forked from anirudh-eka/dashtag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Vagrantfile
26 lines (19 loc) · 875 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu-server-12042-x64-vbox4210"
config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210.box"
config.vm.network :forwarded_port, guest: 3000, host: 3000
config.vm.network :private_network, ip: "192.168.50.10"
config.vm.provider :virtualbox do |vb|
vb.name = "dashtag"
end
config.librarian_puppet.puppetfile_dir = "puppet"
config.librarian_puppet.placeholder_filename = ".gitkeep"
config.vm.provision :shell, :path => "puppet/bootstrap.sh"
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.manifest_file = "init.pp"
puppet.module_path = "puppet/modules"
puppet.options = "--fileserverconfig=/vagrant/puppet/fileserver.conf"
end
end