MODULES-780 Don't blow up on unicode characters.
This commit is contained in:
parent
841ed61ba2
commit
f4ea10f4d8
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ Puppet::Type.type(:apt_key).provide(:apt_key) do
|
||||||
else
|
else
|
||||||
key_output = apt_key('list')
|
key_output = apt_key('list')
|
||||||
end
|
end
|
||||||
key_array = apt_key('list').split("\n").collect do |line|
|
key_array = key_output.split("\n").collect do |line|
|
||||||
line_hash = key_line_hash(line)
|
line_hash = key_line_hash(line)
|
||||||
next unless line_hash
|
next unless line_hash
|
||||||
expired = false
|
expired = false
|
||||||
|
|
Loading…
Reference in a new issue