]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tools/recipes/default.rb
Remove nano to preserve everybody's sanity
[chef.git] / cookbooks / tools / recipes / default.rb
index b0dc2bb9c8fff5114a81f92948bec61c672a1d53..d228d2a4f70e310e8c5ced6a26b1b68a5db19ba9 100644 (file)
@@ -32,7 +32,6 @@ package %w[
   usbutils
   numactl
   xfsprogs
-  sysv-rc-conf
   iotop
   lvm2
   rsyslog
@@ -43,12 +42,12 @@ service "rsyslog" do
   supports :status => true, :restart => true, :reload => true
 end
 
-# Remove unused base package
-package "mlocate" do
+# Remove some unused and unwanted packages
+package %w[mlocate nano whoopsie] do
   action :purge
 end
 
-# Remove ubuntu "desktop" vestigal package
-package "whoopsie" do
-  action :purge
+# Remove screen-cleanup left behind by old release.
+file "/etc/init.d/screen-cleanup" do
+  action :delete
 end