diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-01-31 18:30:59 -0500 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-01-31 18:30:59 -0500 |
commit | c700e9b0dcede303ed1f160ba51f564fd314d2e3 (patch) | |
tree | 579690c1cb9e9112aa2fe4924a1c570fee357dcf /src/subcommands/mh/diagnostics | |
parent | 7d4b4815db8ba2f6f984a18a90b50032cf9158ba (diff) | |
parent | 0d36aebed69b154903e158a4c0f5cc8707cf5168 (diff) |
merging from jrollins
Diffstat (limited to 'src/subcommands/mh/diagnostics')
-rwxr-xr-x | src/subcommands/mh/diagnostics | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/subcommands/mh/diagnostics b/src/subcommands/mh/diagnostics index f411e06..5b04b14 100755 --- a/src/subcommands/mh/diagnostics +++ b/src/subcommands/mh/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 + +} |