X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7b9ec4b60ee39614d1d083d7220e76b07d2b275f..c622106f2aae13e82e096dee5512b9ba68311456:/cookbooks/tools/recipes/default.rb diff --git a/cookbooks/tools/recipes/default.rb b/cookbooks/tools/recipes/default.rb index 432f0fd69..d58523af1 100644 --- a/cookbooks/tools/recipes/default.rb +++ b/cookbooks/tools/recipes/default.rb @@ -32,11 +32,26 @@ package "usbutils" package "numactl" package "xfsprogs" package "sysv-rc-conf" - -if node[:lsb][:release].to_f >= 10.04 - package "iotop" -end +package "iotop" +package "lvm2" if node[:lsb][:release].to_f <= 11.04 package "lslk" end + +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 + +# Remove ubuntu "desktop" vestigal package +package "whoopsie" do + action :purge +end