summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index da02c8bf..024a3517 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -55,6 +55,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "hackday", autostart: false do |hackday|
config.vm.box = "hackday-pixelated-user-agent"
+ hackday.vm.provision "puppet" do |puppet|
+ puppet.manifests_path = "provisioning/manifests"
+ puppet.module_path = "provisioning/modules"
+ puppet.manifest_file = "hackday.pp"
+ end
end
if /mswin|mingw/ =~ RUBY_PLATFORM