]> git.openstreetmap.org Git - chef.git/blob - cookbooks/chef/recipes/server.rb
31e7d13584fbcb8c2fdf14a10ed57c74372ec26d
[chef.git] / cookbooks / chef / recipes / server.rb
1 #
2 # Cookbook Name:: chef
3 # Recipe:: server
4 #
5 # Copyright 2010, 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
22 # chef_package = "chef-server-core_#{node[:chef][:server][:version]}_amd64.deb"
23 #
24 # directory "/var/cache/chef" do
25 #   owner "root"
26 #   group "root"
27 #   mode 0755
28 # end
29 #
30 # Dir.glob("/var/cache/chef/chef-server-core_*.deb").each do |deb|
31 #   next if deb == "/var/cache/chef/#{chef_package}"
32
33 #   file deb do
34 #     action :delete
35 #     backup false
36 #   end
37 # end
38 #
39 # remote_file "/var/cache/chef/#{chef_package}" do
40 #   source "https://web-dl.packagecloud.io/chef/stable/packages/ubuntu/#{node[:lsb][:codename]}/#{chef_package}"
41 #   owner "root"
42 #   group "root"
43 #   mode 0644
44 #   backup false
45 # end
46 #
47 # dpkg_package "chef-server-core" do
48 #   source "/var/cache/chef/#{chef_package}"
49 #   version node[:chef][:server][:version]
50 #   notifies :run, "execute[chef-server-reconfigure]"
51 # end
52
53 template "/etc/opscode/chef-server.rb" do
54   source "server.rb.erb"
55   owner "root"
56   group "root"
57   mode 0644
58   notifies :run, "execute[chef-server-reconfigure]"
59 end
60
61 execute "chef-server-reconfigure" do
62   action :nothing
63   command "chef-server-ctl reconfigure"
64   user "root"
65   group "root"
66 end
67
68 service "private-chef-runsvdir" do
69   provider Chef::Provider::Service::Upstart
70   action [:enable, :start]
71   supports :status => true, :restart => true, :reload => true
72 end
73
74 apache_module "alias"
75 apache_module "proxy_http"
76
77 apache_site "chef.openstreetmap.org" do
78   template "apache.erb"
79 end
80
81 template "/etc/cron.daily/chef-server-backup" do
82   source "server-backup.cron.erb"
83   owner "root"
84   group "root"
85   mode 0755
86 end
87
88 template "/etc/logrotate.d/chef-server" do
89   source "logrotate.server.erb"
90   owner "root"
91   group "root"
92   mode 0644
93 end
94
95 munin_plugin "chef_status"