forked from TomJaeger/vagrant-puppet-lamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
27 lines (18 loc) · 762 Bytes
/
Copy pathVagrantfile
File metadata and controls
27 lines (18 loc) · 762 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
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "taobox"
config.vm.box_url = "http://files.vagrantup.com/lucid32.box"
config.vm.network :forwarded_port, guest: 80, host: 8000
config.vm.host_name = "tao.box"
config.vm.provider :virtualbox do |vb|
vb.gui = false
vb.customize ["modifyvm", :id, "--name", "Ubuntu 12.04"]
#vb.customize ["modifyvm", :id, "--memory", "512"]
end
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"
puppet.module_path = "puppet/modules"
puppet.manifest_file = "base.pp"
end
#inv_config.vm.provision :shell, :path => "puppet/scripts/enable_remote_mysql_access.sh"
end