-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
29 lines (22 loc) · 867 Bytes
/
Vagrantfile
File metadata and controls
29 lines (22 loc) · 867 Bytes
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
27
28
29
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "cybershade"
config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/debian-73-i386-virtualbox-puppet.box"
# Network
config.vm.hostname = "electra.cybershade.org"
config.vm.network :forwarded_port, guest: 80, host: 8080
# Auto Update
config.vm.box_check_update = true
# 1Gb Ram
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
config.vm.provision :puppet do |puppet|
#puppet.options = "--verbose --debug"
puppet.hiera_config_path = "etc/puppet/hiera.yml"
puppet.manifest_file = "site.pp"
puppet.manifests_path = "etc/puppet/manifests"
puppet.module_path = "etc/puppet/modules"
puppet.working_directory = "/vagrant"
end
end