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/diagnostics | |
parent | 0d36aebed69b154903e158a4c0f5cc8707cf5168 (diff) |
make subcommand subfunction that were missed previously
Diffstat (limited to 'src/subcommands/ma/diagnostics')
-rwxr-xr-x | src/subcommands/ma/diagnostics | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/subcommands/ma/diagnostics b/src/subcommands/ma/diagnostics index b6003b0..66aa6b4 100755 --- a/src/subcommands/ma/diagnostics +++ b/src/subcommands/ma/diagnostics @@ -10,7 +10,10 @@ # They are Copyright 2008, and are all released under the GPL, version 3 # or later. -# * check on the status and validity of the key and public certificates +# check on the status and validity of the key and public certificates + +diagnostics() { + local seckey local keysfound local curdate @@ -177,3 +180,5 @@ if [ "$problemsfound" -gt 0 ]; then else echo "Everything seems to be in order!" fi + +} |