X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/b8a8aabcb8c98a61b0c712268eb0fc1ef1d56af7..571e5982cc82c4fbefff0d463895a029a68921fe:/cookbooks/geoipupdate/recipes/default.rb diff --git a/cookbooks/geoipupdate/recipes/default.rb b/cookbooks/geoipupdate/recipes/default.rb index 0c4a84c9c..b87f5e822 100644 --- a/cookbooks/geoipupdate/recipes/default.rb +++ b/cookbooks/geoipupdate/recipes/default.rb @@ -17,30 +17,42 @@ # limitations under the License. # -include_recipe "apt" +include_recipe "apt::maxmind" license_keys = data_bag_item("geoipupdate", "license-keys") -package "geoipupdate" do - action [:install, :upgrade] -end +package "geoipupdate" 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 { node[:geoipupdate][:editions].all? { |edition| ::File.exist?("/usr/share/GeoIP/#{edition}.mmdb") } } + not_if { kitchen? || node[:geoipupdate][:editions].all? { |edition| ::File.exist?("#{node[:geoipupdate][:directory]}/#{edition}.mmdb") } } +end + +systemd_service "geoipupdate" do + description "Update GeoIP databases" + user "root" + exec_start "/usr/bin/geoipupdate" + sandbox :enable_network => true + read_write_paths node[:geoipupdate][:directory] +end + +systemd_timer "geoipupdate" do + description "Update GeoIP databases" + on_boot_sec "15m" + on_unit_active_sec "7d" + randomized_delay_sec "5d" end -directory "/var/lib/GeoIP" do - action :delete - recursive true +service "geoipupdate.timer" do + action [:enable, :start] end