aboutsummaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-01-27 16:04:31 -0200
committerSilvio Rhatto <rhatto@riseup.net>2014-01-27 16:04:31 -0200
commit431f716381a6be6d7bd092acc2b33540ea6b766b (patch)
tree9b0f254e8b4b7542d91e27e74ee34e64fc7ec2e9 /Vagrantfile
parent6733898a5e2a5ed38c89037767c848f5206351c4 (diff)
downloadpuppet-bootstrap-431f716381a6be6d7bd092acc2b33540ea6b766b.tar.gz
puppet-bootstrap-431f716381a6be6d7bd092acc2b33540ea6b766b.tar.bz2
Vagrant compatibility
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile15
1 files changed, 15 insertions, 0 deletions
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