]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tools/recipes/default.rb
Fix rubocop warnings
[chef.git] / cookbooks / tools / recipes / default.rb
index 45fc074a4053f68c3052429521c1e540f207b82d..b751792d22e17f2ae17624eea9596539791720a7 100644 (file)
@@ -33,14 +33,23 @@ package "numactl"
 package "xfsprogs"
 package "sysv-rc-conf"
 package "iotop"
+package "lvm2"
 
-if node[:lsb][:release].to_f <= 11.04
-  package "lslk"
-end
+package "lslk" if node[:lsb][:release].to_f <= 11.04
 
 package "rsyslog"
 
 service "rsyslog" do
-  action [ :enable, :start ]
+  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