X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d4571d5bf7d5c6335b2b37a448ae10dc13d4247b..f2c5c9e904adce651c4cdb22df13b44b7ac2dc9c:/cookbooks/geoipupdate/recipes/default.rb diff --git a/cookbooks/geoipupdate/recipes/default.rb b/cookbooks/geoipupdate/recipes/default.rb index 2b2c23632..036c27881 100644 --- a/cookbooks/geoipupdate/recipes/default.rb +++ b/cookbooks/geoipupdate/recipes/default.rb @@ -35,7 +35,7 @@ execute "geoipupdate" do command "geoipupdate" user "root" group "root" - not_if { kitchen? || 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 @@ -46,7 +46,7 @@ systemd_service "geoipupdate" do private_devices true protect_system "strict" protect_home true - read_write_paths %w[/usr/share/GeoIP /var/lib/GeoIP] + read_write_paths node[:geoipupdate][:directory] end systemd_timer "geoipupdate" do