-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
23 lines (20 loc) · 747 Bytes
/
Vagrantfile
File metadata and controls
23 lines (20 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Vagrant.configure("2") do |config|
config.vm.box = "everbird/cidar-2"
config.vm.provision :puppet, :module_path => "modules" do |puppet|
puppet.manifests_path = "manifests"
puppet.manifest_file = "dev.pp"
end
config.vm.network "private_network", type: "dhcp", auto_config: false
# config.vm.synced_folder ".", "/vagrant", type: "nfs"
# config.vm.synced_folder "/Users/everbird/code", "/home/everbird/code", type: "nfs"
config.vm.synced_folder ".", "/vagrant"
config.vm.synced_folder "vm-store", "/vm-store"
config.vm.synced_folder "/Users/everbird/code", "/code"
config.vm.provider "virtualbox" do |vb|
vb.name = "vagrant-cidar"
vb.customize [
'modifyvm', :id,
'--memory', '512',
]
end
end