]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tools/recipes/default.rb
Install lvm2 tools everywhere
[chef.git] / cookbooks / tools / recipes / default.rb
index c5e85a6ab9208be8e5e73c47938e27c66f067400..d58523af16d36d824c93218eabdd0d3bb8930855 100644 (file)
@@ -33,7 +33,25 @@ package "numactl"
 package "xfsprogs"
 package "sysv-rc-conf"
 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