X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a5b8b5c817adb2a90f0f8c9625a5ba96661f91ff..29e2c1a969f226660eac316bd713c0c8c31e9133:/cookbooks/tools/recipes/default.rb diff --git a/cookbooks/tools/recipes/default.rb b/cookbooks/tools/recipes/default.rb index 801edee7b..d58523af1 100644 --- a/cookbooks/tools/recipes/default.rb +++ b/cookbooks/tools/recipes/default.rb @@ -33,6 +33,7 @@ package "numactl" package "xfsprogs" package "sysv-rc-conf" package "iotop" +package "lvm2" if node[:lsb][:release].to_f <= 11.04 package "lslk" @@ -41,12 +42,16 @@ end package "rsyslog" service "rsyslog" do - action [ :enable, :start ] + action [:enable, :start] supports :status => true, :restart => true, :reload => true end -#Remove unused base package +# Remove unused base package package "mlocate" do action :purge end +# Remove ubuntu "desktop" vestigal package +package "whoopsie" do + action :purge +end