service_kiosk 0.5.5 → 0.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/examples/kiosk_mall/Vagrantfile +3 -3
- metadata +1 -1
|
@@ -17,9 +17,9 @@ Vagrant::Config.run do |config|
|
|
|
17
17
|
config.vm.forward_port 9909, 9909
|
|
18
18
|
config.vm.forward_port 9910, 9910
|
|
19
19
|
|
|
20
|
-
config.vm.provision :puppet, :module_path => ENV['KIOSK_GEM_DIR'] + "provision/modules" do |puppet|
|
|
21
|
-
puppet.manifests_path = ENV['KIOSK_GEM_DIR'] + "provision/manifests"
|
|
20
|
+
config.vm.provision :puppet, :module_path => ENV['KIOSK_GEM_DIR'] + "/provision/modules" do |puppet|
|
|
21
|
+
puppet.manifests_path = ENV['KIOSK_GEM_DIR'] + "/provision/manifests"
|
|
22
22
|
puppet.manifest_file = "default.pp"
|
|
23
23
|
end
|
|
24
|
-
config.vm.provision :shell, :path => ENV['KIOSK_GEM_DIR'] + "provision/bootstrap.sh"
|
|
24
|
+
config.vm.provision :shell, :path => ENV['KIOSK_GEM_DIR'] + "/provision/bootstrap.sh"
|
|
25
25
|
end
|