diff options
-rw-r--r-- | Vagrantfile | 2 | ||||
-rw-r--r-- | puppet/modules/site_static/manifests/init.pp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile index fdf92020..c9c68284 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -17,7 +17,7 @@ Vagrant.configure("2") do |vagrant_config| config.vm.provision "puppet" do |puppet| puppet.manifests_path = "./vagrant" - puppet.module_path = "./puppet/modules" + puppet.module_path = "./puppet/modules" puppet.manifest_file = "install-platform.pp" puppet.options = "--verbose" end diff --git a/puppet/modules/site_static/manifests/init.pp b/puppet/modules/site_static/manifests/init.pp index 2a198b57..1e7317a0 100644 --- a/puppet/modules/site_static/manifests/init.pp +++ b/puppet/modules/site_static/manifests/init.pp @@ -46,7 +46,7 @@ class site_static { } if (member($formats, 'amber')) { - rubygems::gem{'amber-0.3.4': } + rubygems::gem{'amber-0.3.7': } } create_resources(site_static::domain, $domains) |