mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
Add Vagrantfile for the Parallels provider
This commit is contained in:
parent
a2a97537ce
commit
f3df8dbb25
27
Vagrantfile.parallels
Normal file
27
Vagrantfile.parallels
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# -*- mode: ruby -*-
|
||||||
|
# vi: set ft=ruby :
|
||||||
|
|
||||||
|
Vagrant.configure("2") do |config|
|
||||||
|
config.vm.box = "parallels/centos-6.5"
|
||||||
|
|
||||||
|
config.vm.network "forwarded_port", guest: 80, host: 8080,
|
||||||
|
auto_correct: true
|
||||||
|
|
||||||
|
config.vm.provider "parallels" do |v|
|
||||||
|
v.name = "Icinga Web 2 Development"
|
||||||
|
# Update Parallels Tools automatically
|
||||||
|
v.update_guest_tools = true
|
||||||
|
# Set power consumption mode to "Better Performance"
|
||||||
|
v.optimize_power_consumption = false
|
||||||
|
v.memory = 1024
|
||||||
|
v.cpus = 2
|
||||||
|
end
|
||||||
|
|
||||||
|
config.puppet_install.puppet_version = :latest
|
||||||
|
|
||||||
|
config.vm.provision :puppet do |puppet|
|
||||||
|
puppet.module_path = ".vagrant-puppet/modules"
|
||||||
|
puppet.manifests_path = ".vagrant-puppet/manifests"
|
||||||
|
# puppet.options = "-v -d"
|
||||||
|
end
|
||||||
|
end
|
Loading…
x
Reference in New Issue
Block a user