]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tools/recipes/default.rb
Install curl as part of tools
[chef.git] / cookbooks / tools / recipes / default.rb
1 #
2 # Cookbook:: tools
3 # Recipe:: default
4 #
5 # Copyright:: 2011, 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 package %w[
21   bash-completion
22   cron
23   curl
24   dmidecode
25   ethtool
26   iotop
27   iptraf-ng
28   locales-all
29   lsof
30   lsscsi
31   lvm2
32   mtr-tiny
33   numactl
34   pciutils
35   rsyslog
36   screen
37   smartmontools
38   strace
39   sysstat
40   systemd-coredump
41   tcpdump
42   usbutils
43   vim
44   xfsprogs
45 ]
46
47 service "rsyslog" do
48   action [:enable, :start]
49   supports :status => true, :restart => true, :reload => true
50 end
51
52 # Remove some unused and unwanted packages
53 package %w[mlocate whoopsie] do
54   action :purge
55 end
56
57 # Configure cron to run in the local timezone of the machine
58 systemd_service "cron-timezone" do
59   service "cron"
60   dropin "timezone"
61   environment "TZ" => node[:timezone]
62   notifies :restart, "service[cron]"
63   only_if { node[:timezone] }
64 end
65
66 # Configure cron with lower cpu and IO priority
67 if node[:tools][:cron][:load]
68   systemd_service "cron-load" do
69     service "cron"
70     dropin "load"
71     nice node[:tools][:cron][:load][:nice]
72     io_scheduling_class node[:tools][:cron][:load][:io_scheduling_class]
73     io_scheduling_priority node[:tools][:cron][:load][:io_scheduling_priority]
74     notifies :restart, "service[cron]"
75   end
76 end
77
78 # Make sure cron is running
79 service "cron" do
80   action [:enable, :start]
81 end
82
83 # Ubuntu MOTD adverts be-gone
84 template "/etc/default/motd-news" do
85   source "motd-news.erb"
86   owner "root"
87   group "root"
88   mode "644"
89 end