X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7b9ec4b60ee39614d1d083d7220e76b07d2b275f..307adfed3045a1673b09bccce74acaaf530d3c9b:/cookbooks/tools/recipes/default.rb diff --git a/cookbooks/tools/recipes/default.rb b/cookbooks/tools/recipes/default.rb index 432f0fd69..b751792d2 100644 --- a/cookbooks/tools/recipes/default.rb +++ b/cookbooks/tools/recipes/default.rb @@ -32,11 +32,24 @@ package "usbutils" package "numactl" package "xfsprogs" package "sysv-rc-conf" +package "iotop" +package "lvm2" -if node[:lsb][:release].to_f >= 10.04 - package "iotop" +package "lslk" if node[:lsb][:release].to_f <= 11.04 + +package "rsyslog" + +service "rsyslog" do + action [:enable, :start] + supports :status => true, :restart => true, :reload => true +end + +# Remove unused base package +package "mlocate" do + action :purge end -if node[:lsb][:release].to_f <= 11.04 - package "lslk" +# Remove ubuntu "desktop" vestigal package +package "whoopsie" do + action :purge end