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