Merge pull request #465 from bootc/fixes/gpg2_date_parsing
apt_key: fix parsing invalid dates when using GnuPG 2.x
This commit is contained in:
commit
be54e18899
1 changed files with 9 additions and 10 deletions
|
@ -1,4 +1,3 @@
|
||||||
require 'date'
|
|
||||||
require 'open-uri'
|
require 'open-uri'
|
||||||
require 'net/ftp'
|
require 'net/ftp'
|
||||||
require 'tempfile'
|
require 'tempfile'
|
||||||
|
@ -19,7 +18,7 @@ Puppet::Type.type(:apt_key).provide(:apt_key) do
|
||||||
commands :gpg => '/usr/bin/gpg'
|
commands :gpg => '/usr/bin/gpg'
|
||||||
|
|
||||||
def self.instances
|
def self.instances
|
||||||
cli_args = ['adv','--list-keys', '--with-colons', '--fingerprint']
|
cli_args = ['adv','--list-keys', '--with-colons', '--fingerprint', '--fixed-list-mode']
|
||||||
|
|
||||||
if RUBY_VERSION > '1.8.7'
|
if RUBY_VERSION > '1.8.7'
|
||||||
key_output = apt_key(cli_args).encode('UTF-8', 'binary', :invalid => :replace, :undef => :replace, :replace => '')
|
key_output = apt_key(cli_args).encode('UTF-8', 'binary', :invalid => :replace, :undef => :replace, :replace => '')
|
||||||
|
@ -46,7 +45,7 @@ Puppet::Type.type(:apt_key).provide(:apt_key) do
|
||||||
expired = false
|
expired = false
|
||||||
|
|
||||||
if line_hash[:key_expiry]
|
if line_hash[:key_expiry]
|
||||||
expired = Date.today > Date.parse(line_hash[:key_expiry])
|
expired = Time.now >= line_hash[:key_expiry]
|
||||||
end
|
end
|
||||||
|
|
||||||
new(
|
new(
|
||||||
|
@ -57,10 +56,10 @@ Puppet::Type.type(:apt_key).provide(:apt_key) do
|
||||||
:long => line_hash[:key_long],
|
:long => line_hash[:key_long],
|
||||||
:ensure => :present,
|
:ensure => :present,
|
||||||
:expired => expired,
|
:expired => expired,
|
||||||
:expiry => line_hash[:key_expiry],
|
:expiry => line_hash[:key_expiry].nil? ? nil : line_hash[:key_expiry].strftime("%Y-%m-%d"),
|
||||||
:size => line_hash[:key_size],
|
:size => line_hash[:key_size],
|
||||||
:type => line_hash[:key_type],
|
:type => line_hash[:key_type],
|
||||||
:created => line_hash[:key_created]
|
:created => line_hash[:key_created].strftime("%Y-%m-%d")
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
key_array.compact!
|
key_array.compact!
|
||||||
|
@ -96,8 +95,8 @@ Puppet::Type.type(:apt_key).provide(:apt_key) do
|
||||||
:key_short => fingerprint[-8..-1], # last 8 characters of fingerprint
|
:key_short => fingerprint[-8..-1], # last 8 characters of fingerprint
|
||||||
:key_size => pub_split[2],
|
:key_size => pub_split[2],
|
||||||
:key_type => nil,
|
:key_type => nil,
|
||||||
:key_created => pub_split[5],
|
:key_created => Time.at(pub_split[5].to_i),
|
||||||
:key_expiry => pub_split[6].empty? ? nil : pub_split[6],
|
:key_expiry => pub_split[6].empty? ? nil : Time.at(pub_split[6].to_i),
|
||||||
}
|
}
|
||||||
|
|
||||||
# set key type based on types defined in /usr/share/doc/gnupg/DETAILS.gz
|
# set key type based on types defined in /usr/share/doc/gnupg/DETAILS.gz
|
||||||
|
@ -143,10 +142,10 @@ 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 = execute(["#{command(:gpg)} --with-fingerprint --with-colons #{file.path} | awk -F: '/^fpr:/ { print $10 }'"], :failonfail => false)
|
||||||
extracted_key = extracted_key.chomp
|
extracted_key = extracted_key.chomp
|
||||||
if extracted_key != name
|
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
|
end
|
||||||
else
|
else
|
||||||
warning ('/usr/bin/gpg cannot be found for verification of the id.')
|
warning('/usr/bin/gpg cannot be found for verification of the id.')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
file.path
|
file.path
|
||||||
|
|
Loading…
Reference in a new issue