X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/f5c209a2991b26130dcae5cfcc613be001f5106d..e39ce14712633ee84052cfec5de1b3aa6a02e877:/cookbooks/serverinfo/recipes/default.rb diff --git a/cookbooks/serverinfo/recipes/default.rb b/cookbooks/serverinfo/recipes/default.rb index 81685b376..8d154c66a 100644 --- a/cookbooks/serverinfo/recipes/default.rb +++ b/cookbooks/serverinfo/recipes/default.rb @@ -21,6 +21,9 @@ include_recipe "apache" include_recipe "git" package %w[ + gcc + g++ + make ruby ruby-dev libssl-dev @@ -35,6 +38,7 @@ end git "/srv/hardware.openstreetmap.org" do action :sync repository "https://github.com/gravitystorm/osmf-server-info.git" + depth 1 user "root" group "root" notifies :run, "execute[/srv/hardware.openstreetmap.org/Gemfile]" @@ -45,7 +49,7 @@ roles = { :rows => search(:role, "*:*") } file "/srv/hardware.openstreetmap.org/_data/nodes.json" do content nodes.to_json - mode 0o644 + mode "644" owner "root" group "root" notifies :run, "execute[/srv/hardware.openstreetmap.org]" @@ -53,14 +57,14 @@ end file "/srv/hardware.openstreetmap.org/_data/roles.json" do content roles.to_json - mode 0o644 + mode "644" owner "root" group "root" notifies :run, "execute[/srv/hardware.openstreetmap.org]" end directory "/srv/hardware.openstreetmap.org/_site" do - mode 0o755 + mode "755" owner "nobody" group "nogroup" end @@ -68,7 +72,7 @@ end # Workaround https://github.com/jekyll/jekyll/issues/7804 # by creating a .jekyll-cache folder directory "/srv/hardware.openstreetmap.org/.jekyll-cache" do - mode 0o755 + mode "755" owner "nobody" group "nogroup" end