X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/093a840758f0c7909732eee02befd6f7c8b9fa6c..5dcf5ef21d1ba91a71b5497f2c9745620a6008d0:/cookbooks/dns/recipes/default.rb diff --git a/cookbooks/dns/recipes/default.rb b/cookbooks/dns/recipes/default.rb index 80ddc9a89..04d2fe343 100644 --- a/cookbooks/dns/recipes/default.rb +++ b/cookbooks/dns/recipes/default.rb @@ -39,6 +39,8 @@ package %w[ lockfile-progs ] +cache_dir = Chef::Config[:file_cache_path] + dnscontrol_version = "3.19.0" remote_file "#{cache_dir}/dnscontrol_amd64.deb" do @@ -49,7 +51,7 @@ remote_file "#{cache_dir}/dnscontrol_amd64.deb" do backup false end -package "dnscontrol" do +dpkg_package "dnscontrol" do action :nothing source "#{cache_dir}/dnscontrol_amd64.deb" subscribes :install, "remote_file[#{cache_dir}/dnscontrol_amd64.deb]"