From 431f716381a6be6d7bd092acc2b33540ea6b766b Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 27 Jan 2014 16:04:31 -0200 Subject: Vagrant compatibility --- Vagrantfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Vagrantfile (limited to 'Vagrantfile') diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..ecf1c91 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,15 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant::Config.run do |config| + # Every Vagrant virtual environment requires a box to build off of. + config.vm.box = "wheezy" + + # Enable provisioning with Puppet stand alone. + config.vm.provision :puppet do |puppet| + puppet.manifest_file = "vagrant.pp" + puppet.manifests_path = "puppet/manifests" + puppet.module_path = "puppet/modules" + puppet.pp_path = "/etc/puppet" + end +end -- cgit v1.2.3