]> git.openstreetmap.org Git - chef.git/blob - cookbooks/chef/recipes/default.rb
chef: Remove ancient verisign 1024 root cert
[chef.git] / cookbooks / chef / recipes / default.rb
1 #
2 # Cookbook:: chef
3 # Recipe:: default
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 #     https://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 cache_dir = Chef::Config[:file_cache_path]
21
22 chef_version = node[:chef][:client][:version]
23
24 chef_platform = if platform?("debian")
25                   "debian"
26                 else
27                   "ubuntu"
28                 end
29
30 chef_arch = if arm?
31               "arm64"
32             else
33               "amd64"
34             end
35
36 chef_package = "chef_#{chef_version}-1_#{chef_arch}.deb"
37
38 directory "/var/cache/chef" do
39   action :delete
40   recursive true
41 end
42
43 Dir.glob("#{cache_dir}/chef_*.deb").each do |deb|
44   next if deb == "#{cache_dir}/#{chef_package}"
45
46   file deb do
47     action :delete
48     backup false
49   end
50 end
51
52 os_release = if platform?("debian") && node[:lsb][:release].to_f > 11
53                11
54              else
55                node[:lsb][:release]
56              end
57
58 remote_file "#{cache_dir}/#{chef_package}" do
59   source "https://packages.chef.io/files/stable/chef/#{chef_version}/#{chef_platform}/#{os_release}/#{chef_package}"
60   owner "root"
61   group "root"
62   mode "644"
63   backup false
64   ignore_failure true
65 end
66
67 dpkg_package "chef" do
68   source "#{cache_dir}/#{chef_package}"
69   version "#{chef_version}-1"
70 end
71
72 directory "/etc/chef" do
73   owner "root"
74   group "root"
75   mode "755"
76 end
77
78 template "/etc/chef/client.rb" do
79   source "client.rb.erb"
80   owner "root"
81   group "root"
82   mode "640"
83 end
84
85 file "/etc/chef/client.pem" do
86   owner "root"
87   group "root"
88   mode "400"
89 end
90
91 template "/etc/chef/report.rb" do
92   source "report.rb.erb"
93   owner "root"
94   group "root"
95   mode "644"
96 end
97
98 template "/etc/logrotate.d/chef" do
99   source "logrotate.erb"
100   owner "root"
101   group "root"
102   mode "644"
103 end
104
105 # Remove the ancient verisign certificate workaround
106 file "/etc/chef/trusted_certs/verisign.pem" do
107   action :delete
108 end
109
110 directory node[:ohai][:plugin_dir] do
111   owner "root"
112   group "root"
113   mode "755"
114 end
115
116 directory "/var/log/chef" do
117   owner "root"
118   group "root"
119   mode "755"
120 end
121
122 systemd_service "chef-client" do
123   description "Chef client"
124   exec_start "/usr/bin/chef-client"
125   nice 10
126 end
127
128 systemd_timer "chef-client" do
129   description "Chef client"
130   after "network.target"
131   on_active_sec 60
132   on_unit_inactive_sec 25 * 60
133   randomized_delay_sec 10 * 60
134 end
135
136 service "chef-client.timer" do
137   action [:enable, :start]
138 end
139
140 service "chef-client.service" do
141   action :disable
142   subscribes :stop, "service[chef-client.timer]"
143 end