]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/commitdiff
apt_key: fix some whitespace issues
authorChris Boot <bootc@bootc.net>
Sun, 15 Mar 2015 22:47:15 +0000 (22:47 +0000)
committerChris Boot <bootc@bootc.net>
Sun, 15 Mar 2015 22:47:15 +0000 (22:47 +0000)
lib/puppet/provider/apt_key/apt_key.rb

index 8878022d5e840cdf12252c56385fae7c6b1c800f..cd68d37063117142b409c9f17dbe1d606b4e9ded 100644 (file)
@@ -142,11 +142,11 @@ Puppet::Type.type(:apt_key).provide(:apt_key) do
         extracted_key = execute(["#{command(:gpg)} --with-fingerprint --with-colons #{file.path} | awk -F: '/^fpr:/ { print $10 }'"], :failonfail => false)
         extracted_key = extracted_key.chomp
         if extracted_key != name
-          fail ("The id in your manifest #{resource[:name]} and the fingerprint from content/source do not match. Please check there is not an error in the id or check the content/source is legitimate.")
+          fail("The id in your manifest #{resource[:name]} and the fingerprint from content/source do not match. Please check there is not an error in the id or check the content/source is legitimate.")
         end
       else
-        warning ('/usr/bin/gpg cannot be found for verification of the id.')
-      end 
+        warning('/usr/bin/gpg cannot be found for verification of the id.')
+      end
     end
     file.path
   end