diff options
author | Matt Goins <mjgoins@openflows.com> | 2009-01-31 18:35:31 -0500 |
---|---|---|
committer | Matt Goins <mjgoins@openflows.com> | 2009-01-31 18:35:31 -0500 |
commit | 7fb3f70a48202153ecb7c43830ded000f8a0e615 (patch) | |
tree | 9a90f939b9bf9e4692fc35232b537a1cfd371321 /src/subcommands/ma/list-certifiers | |
parent | 2e76a0c288f2c043e205f443410fb7dd0e239953 (diff) | |
parent | 93527967c043c99c708e209502292cf276877bf9 (diff) |
Merge commit 'jrollins/master'
Diffstat (limited to 'src/subcommands/ma/list-certifiers')
-rwxr-xr-x | src/subcommands/ma/list-certifiers | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/subcommands/ma/list-certifiers b/src/subcommands/ma/list-certifiers index 789d553..e920888 100755 --- a/src/subcommands/ma/list-certifiers +++ b/src/subcommands/ma/list-certifiers @@ -12,6 +12,8 @@ # list the host certifiers +list_certifiers() { + local keys local key @@ -23,3 +25,5 @@ keys=$(gpg_authentication "--no-options --list-options show-uid-validity --keyri for key in $keys ; do gpg_authentication "--no-options --list-options show-uid-validity --keyring ${GNUPGHOME_AUTHENTICATION}/pubring.gpg --list-key --fingerprint $key" done + +} |