]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/geoipupdate/recipes/default.rb
Remove cleanup code for old GeoIP configuration
[chef.git] / cookbooks / geoipupdate / recipes / default.rb
index 27d6478ae7f118d796e65daf1bde19af090c0196..fedae00113522c473890d8cb8d19c16a77e2817f 100644 (file)
@@ -21,19 +21,6 @@ include_recipe "apt"
 
 license_keys = data_bag_item("geoipupdate", "license-keys")
 
-package "geoip-database" do
-  action :purge
-end
-
-package "geoip-database-contrib" do
-  action :purge
-end
-
-package "geoipupdate" do
-  action :purge
-  only_if { ::File.exist?("/etc/cron.d/geoipupdate") }
-end
-
 package "geoipupdate"
 
 template "/etc/GeoIP.conf" do
@@ -51,10 +38,6 @@ execute "geoipupdate" do
   not_if { ENV.key?("TEST_KITCHEN") || node[:geoipupdate][:editions].all? { |edition| ::File.exist?("/usr/share/GeoIP/#{edition}.mmdb") } }
 end
 
-systemd_service "geoipdate" do
-  action :delete
-end
-
 systemd_service "geoipupdate" do
   description "Update GeoIP databases"
   user "root"
@@ -76,8 +59,3 @@ end
 service "geoipupdate.timer" do
   action [:enable, :start]
 end
-
-directory "/var/lib/GeoIP" do
-  action :delete
-  recursive true
-end