]> git.openstreetmap.org Git - chef.git/blob - cookbooks/serverinfo/recipes/default.rb
Deploy osmf-server-info to hardware.openstreetmap.org
[chef.git] / cookbooks / serverinfo / recipes / default.rb
1 #
2 # Cookbook Name:: serverinfo
3 # Recipe:: default
4 #
5 # Copyright 2015, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 include_recipe "apache::ssl"
21 include_recipe "git"
22
23 package "ruby2.0"
24 package "ruby2.0-dev"
25
26 gem_package "jekyll" do
27   gem_binary "gem2.0"
28 end
29
30 git "/srv/hardware.openstreetmap.org" do
31   action :sync
32   repository "git://github.com/gravitystorm/osmf-server-info.git"
33   user "root"
34   group "root"
35   notifies :run, "execute[/srv/hardware.openstreetmap.org]"
36 end
37
38 nodes = { :rows => search(:node, "*:*") }
39 roles = { :rows => search(:role, "*:*") }
40
41 file "/srv/hardware.openstreetmap.org/_data/nodes.json" do
42   content nodes.to_json
43   mode 0644
44   owner "root"
45   group "root"
46   notifies :run, "execute[/srv/hardware.openstreetmap.org]"
47 end
48
49 file "/srv/hardware.openstreetmap.org/_data/roles.json" do
50   content roles.to_json
51   mode 0644
52   owner "root"
53   group "root"
54   notifies :run, "execute[/srv/hardware.openstreetmap.org]"
55 end
56
57 directory "/srv/hardware.openstreetmap.org/_site" do
58   mode 0755
59   owner "nobody"
60   group "nogroup"
61 end
62
63 execute "/srv/hardware.openstreetmap.org" do
64   action :nothing
65   command "jekyll build"
66   cwd "/srv/hardware.openstreetmap.org"
67   user "nobody"
68   group "nogroup"
69 end
70
71 apache_site "hardware.openstreetmap.org" do
72   template "apache.erb"
73   directory "/srv/hardware.openstreetmap.org/_site"
74 end