-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
22 lines (18 loc) · 749 Bytes
/
Copy pathVagrantfile
File metadata and controls
22 lines (18 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Vagrant::Config.run do |config|
config.vm.box = 'Fedora-16-i386'
config.vm.boot_mode = :gui
config.vm.forward_port 8081, 8081
config.vm.provision :puppet do |puppet|
puppet.manifests_path = 'puppet'
puppet.module_path = 'puppet/modules'
puppet.manifest_file = 'init.pp'
puppet.options = '--verbose'
end
config.vm.customize ['modifyvm', :id, '--memory', '2048']
config.vm.customize ['modifyvm', :id, '--cpus', '2']
config.vm.customize ['modifyvm', :id, '--vram', '16']
config.vm.customize ['modifyvm', :id, '--accelerate3d', 'on']
config.vm.customize ['modifyvm', :id, '--usb', 'on']
# This gets rid of the dbus-launch "Autolaunch error: X11 initialization failed" errors
config.ssh.forward_x11 = true
end