X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ad17f853c6951a4b71a89b628efcd0ae269449f2..d5c4026bf1afc48c3777d354efba6f8fad7581ec:/cookbooks/tools/recipes/default.rb diff --git a/cookbooks/tools/recipes/default.rb b/cookbooks/tools/recipes/default.rb index 34daecf1f..99c03e2b9 100644 --- a/cookbooks/tools/recipes/default.rb +++ b/cookbooks/tools/recipes/default.rb @@ -17,41 +17,38 @@ # limitations under the License. # -package "bash-completion" -package "dmidecode" -package "ethtool" -package "lsof" -package "lsscsi" -package "pciutils" -package "screen" -package "smartmontools" -package "strace" -package "sysstat" -package "tcpdump" -package "usbutils" -package "numactl" -package "xfsprogs" -package "sysv-rc-conf" -package "iotop" - -if node[:lsb][:release].to_f <= 11.04 - package "lslk" -end - -package "rsyslog" +package %w[ + bash-completion + dmidecode + ethtool + lsof + lsscsi + pciutils + screen + smartmontools + strace + sysstat + tcpdump + usbutils + numactl + xfsprogs + sysv-rc-conf + iotop + lvm2 + 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 +# Remove ubuntu "desktop" vestigal package package "whoopsie" do action :purge end -