]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apt/providers/source.rb
Update combined tilecache graphs for delay pool changes
[chef.git] / cookbooks / apt / providers / source.rb
index b6a31863444001681743ea6db78471a9fcb234a2..c12679f0d96b0b2ababf81acc7c4fb3810d53429 100644 (file)
@@ -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