]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/serverinfo/recipes/default.rb
imagery: remove broken vdl_light6-deflate layer
[chef.git] / cookbooks / serverinfo / recipes / default.rb
index 3cbbc39eeb609db58d2cef7af5242b1047957e5a..93de4bc2adc9bb2e01c240b361dd816712d4aef0 100644 (file)
@@ -23,7 +23,9 @@ include_recipe "git"
 package %w[
   ruby
   ruby-dev
+  libssl-dev
   zlib1g-dev
+  pkg-config
 ]
 
 gem_package "bundler" do
@@ -32,7 +34,8 @@ end
 
 git "/srv/hardware.openstreetmap.org" do
   action :sync
-  repository "git://github.com/gravitystorm/osmf-server-info.git"
+  repository "https://github.com/gravitystorm/osmf-server-info.git"
+  depth 1
   user "root"
   group "root"
   notifies :run, "execute[/srv/hardware.openstreetmap.org/Gemfile]"
@@ -65,24 +68,24 @@ end
 
 # Workaround https://github.com/jekyll/jekyll/issues/7804
 # by creating a .jekyll-cache folder
-directory "/srv/hardware.osmfoundation.org/.jekyll-cache" do
+directory "/srv/hardware.openstreetmap.org/.jekyll-cache" do
   mode 0o755
   owner "nobody"
   group "nogroup"
 end
 
-execute "/srv/hardware.osmfoundation.org/Gemfile" do
+execute "/srv/hardware.openstreetmap.org/Gemfile" do
   action :nothing
   command "bundle install --deployment"
-  cwd "/srv/hardware.osmfoundation.org"
+  cwd "/srv/hardware.openstreetmap.org"
   user "root"
   group "root"
-  notifies :run, "execute[/srv/hardware.osmfoundation.org]"
+  notifies :run, "execute[/srv/hardware.openstreetmap.org]"
 end
 
 execute "/srv/hardware.openstreetmap.org" do
   action :nothing
-  command "bundle exec jekyll build --trace --baseurl=https://hardware.osmfoundation.org"
+  command "bundle exec jekyll build --trace --baseurl=https://hardware.openstreetmap.org"
   cwd "/srv/hardware.openstreetmap.org"
   user "nobody"
   group "nogroup"