added gpg2 as fallback

fixes #1796
This commit is contained in:
Brian Coca 2015-08-10 09:34:55 -04:00
parent 7f01246bb5
commit afb9b8e2f3

View file

@ -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 lne 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()