forked from voxpupuli/puppet-bacula
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
25 lines (19 loc) · 736 Bytes
/
Vagrantfile
File metadata and controls
25 lines (19 loc) · 736 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
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
### Define options for all VMs ###
# Using vagrant-cachier improves performance if you run repeated yum/apt updates
if defined? VagrantPlugins::Cachier
config.cache.auto_detect = true
end
config.ssh.forward_agent = true
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "512", "--cpus", "4", "--ioapic", "on"]
end
config.vm.define :package_install do |node|
node.vm.box = 'puppetlabs/debian-7.5-64-puppet'
node.vm.hostname = 'debian7.boxnet'
node.vm.network :private_network, :auto_network => true
end
end