(MODULES-4686) fix incorrect GPG keys parsing on Debian 9
authorTomas Barton <barton.tomas@gmail.com>
Thu, 7 Sep 2017 12:18:08 +0000 (14:18 +0200)
committerTomas Barton <barton.tomas@gmail.com>
Thu, 7 Sep 2017 21:01:03 +0000 (23:01 +0200)
patch from Alex P (alexpr)

lib/puppet/provider/apt_key/apt_key.rb

index 631efde312103dd1dc261b0cb8dc47ffb5efb3c6..3f95c3cc96af9c68f40234d6f07a9a3072be5173 100644 (file)
@@ -26,17 +26,25 @@ Puppet::Type.type(:apt_key).provide(:apt_key) do
       key_output = apt_key(cli_args)
     end
 
-    pub_line, fpr_line = nil
+    pub_line, sub_line, fpr_line = nil
 
     key_array = key_output.split("\n").collect do |line|
       if line.start_with?('pub')
           pub_line = line
           # reset fpr_line, to skip any previous subkeys which were collected
           fpr_line = nil
+          sub_line = nil
+      elsif line.start_with?('sub')
+          sub_line = line
       elsif line.start_with?('fpr')
           fpr_line = line
       end
 
+      if (sub_line and fpr_line)
+        sub_line, fpr_line = nil
+        next
+      end
+
       next unless (pub_line and fpr_line)
 
       line_hash = key_line_hash(pub_line, fpr_line)