diff options
author | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-01-31 18:31:09 -0500 |
---|---|---|
committer | Jameson Graef Rollins <jrollins@finestructure.net> | 2009-01-31 18:31:09 -0500 |
commit | dd84300cab61e2a86299fd8c05f337abb38fb7d9 (patch) | |
tree | bcf883e173693e2721d243755493b9679742831e /src/subcommands/ma/list-certifiers | |
parent | 0d36aebed69b154903e158a4c0f5cc8707cf5168 (diff) |
make subcommand subfunction that were missed previously
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 + +} |