summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan DeLeo <dan@kallistec.com>2017-09-21 17:25:26 -0700
committerGitHub <noreply@github.com>2017-09-21 17:25:26 -0700
commit3d4f2b14d84a05430dbc408b7df6d4960aa3792d (patch)
tree12fc81c7d2483a21db7b9bd0db5028942a4e8322
parenta39fac6cc34c7fb09337861159f79a9a122beaed (diff)
parenta2a13f68766c5cc489bfbcfd437a387c943e695a (diff)
downloadchef-3d4f2b14d84a05430dbc408b7df6d4960aa3792d.tar.gz
Merge pull request #6430 from chef/backport-6094
Backport 6094 to Chef 12: apt-key finger no longer matches extract fingerprints regex
-rw-r--r--lib/chef/provider/apt_repository.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/chef/provider/apt_repository.rb b/lib/chef/provider/apt_repository.rb
index 07aeb090d0..c7d66482df 100644
--- a/lib/chef/provider/apt_repository.rb
+++ b/lib/chef/provider/apt_repository.rb
@@ -31,6 +31,9 @@ class Chef
include Chef::Mixin::ShellOut
extend Chef::Mixin::Which
+ LIST_APT_KEYS = "apt-key list".freeze
+ LIST_APT_KEY_FINGERPRINTS = "apt-key adv --list-public-keys --with-fingerprint --with-colons".freeze
+
provides :apt_repository do
which("apt-get")
end
@@ -149,7 +152,7 @@ class Chef
def no_new_keys?(file)
# Now we are using the option --with-colons that works across old os versions
# as well as the latest (16.10). This for both `apt-key` and `gpg` commands
- installed_keys = extract_fingerprints_from_cmd("apt-key adv --list-public-keys --with-fingerprint --with-colons")
+ installed_keys = extract_fingerprints_from_cmd(LIST_APT_KEY_FINGERPRINTS)
proposed_keys = extract_fingerprints_from_cmd("gpg --with-fingerprint --with-colons #{file}")
(installed_keys & proposed_keys).sort == proposed_keys.sort
end
@@ -200,15 +203,15 @@ class Chef
command cmd
sensitive new_resource.sensitive
not_if do
- present = extract_fingerprints_from_cmd("apt-key finger").any? do |fp|
+ present = extract_fingerprints_from_cmd(LIST_APT_KEY_FINGERPRINTS).any? do |fp|
fp.end_with? key.upcase
end
- present && key_is_valid?("apt-key list", key.upcase)
+ present && key_is_valid?(LIST_APT_KEYS, key.upcase)
end
notifies :run, "execute[apt-cache gencaches]", :immediately
end
- raise "The key #{key} is invalid and cannot be used to verify an apt repository." unless key_is_valid?("apt-key list", key.upcase)
+ raise "The key #{key} is invalid and cannot be used to verify an apt repository." unless key_is_valid?(LIST_APT_KEYS, key.upcase)
end
def install_ppa_key(owner, repo)