Merge pull request #1895 from bcoca/gpg2_fallback

added gpg2 as fallback
reviewable/pr18780/r1
Brian Coca 9 years ago
commit 01506abc4f

@ -141,7 +141,14 @@ class RpmKey:
return ret
def getkeyid(self, keyfile):
gpg = self.module.get_bin_path('gpg', True)
gpg = self.module.get_bin_path('gpg')
if not gpg:
gpg = self.module.get_bin_path('gpg2')
if not gpg:
self.json_fail(msg="rpm_key requires a command line gpg or gpg2, none found")
stdout, stderr = self.execute_command([gpg, '--no-tty', '--batch', '--with-colons', '--fixed-list-mode', '--list-packets', keyfile])
for line in stdout.splitlines():
line = line.strip()

Loading…
Cancel
Save