]> 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 a8afec012bc27d754e8d90826f59127b4f790bec..d228d2a4f70e310e8c5ced6a26b1b68a5db19ba9 100644 (file)
@@ -37,21 +37,17 @@ package %w[
   rsyslog
 ]
 
-if node[:lsb][:release].to_f < 18.04
-  package "sysv-rc-conf"
-end
-
 service "rsyslog" do
   action [:enable, :start]
   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