X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/85bd960b218b23411744b080d3f2df4f55fdee27..cf239da7df609476ac2910e79f4d5a98305302ed:/cookbooks/geoipupdate/recipes/default.rb diff --git a/cookbooks/geoipupdate/recipes/default.rb b/cookbooks/geoipupdate/recipes/default.rb index 58bf40d8b..6d8e5b6e5 100644 --- a/cookbooks/geoipupdate/recipes/default.rb +++ b/cookbooks/geoipupdate/recipes/default.rb @@ -27,18 +27,35 @@ template "/etc/GeoIP.conf" do source "GeoIP.conf.erb" owner "root" group "root" - mode 0o644 + mode "644" variables :license_keys => license_keys end -execute "geoipdate" do +execute "geoipupdate" do command "geoipupdate" user "root" group "root" - not_if { ENV.key?("TEST_KITCHEN") || node[:geoipupdate][:editions].all? { |edition| ::File.exist?("/usr/share/GeoIP/#{edition}.mmdb") } } + not_if { kitchen? || node[:geoipupdate][:editions].all? { |edition| ::File.exist?("/usr/share/GeoIP/#{edition}.mmdb") } } end -directory "/var/lib/GeoIP" do - action :delete - recursive true +systemd_service "geoipupdate" do + description "Update GeoIP databases" + user "root" + exec_start "/usr/bin/geoipupdate" + private_tmp true + private_devices true + protect_system "strict" + protect_home true + read_write_paths "/usr/share/GeoIP" +end + +systemd_timer "geoipupdate" do + description "Update GeoIP databases" + on_boot_sec "15m" + on_unit_active_sec "7d" + randomized_delay_sec "4h" +end + +service "geoipupdate.timer" do + action [:enable, :start] end