X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/aff3fbe6802d93a8deae8fa2637589c8d28f6681..821c29b09ce6a0bd444f89c4cf80c207f2c8df26:/cookbooks/apt/providers/source.rb diff --git a/cookbooks/apt/providers/source.rb b/cookbooks/apt/providers/source.rb index b6a318634..c12679f0d 100644 --- a/cookbooks/apt/providers/source.rb +++ b/cookbooks/apt/providers/source.rb @@ -27,7 +27,7 @@ action :create do if new_resource.key execute "apt-key-#{new_resource.key}" do command "/usr/bin/apt-key adv --keyserver hkp://keys.gnupg.net --recv-keys #{new_resource.key}" - not_if "/usr/bin/apt-key list | /bin/fgrep -q #{new_resource.key}" + not_if "/usr/bin/apt-key adv --list-keys #{new_resource.key}" end end @@ -35,7 +35,7 @@ action :create do source new_resource.template owner "root" group "root" - mode 0644 + mode 0o644 variables :url => new_resource.url end end