summaryrefslogtreecommitdiff
path: root/src/subcommands/ma/diagnostics
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@finestructure.net>2009-01-31 18:31:09 -0500
committerJameson Graef Rollins <jrollins@finestructure.net>2009-01-31 18:31:09 -0500
commitdd84300cab61e2a86299fd8c05f337abb38fb7d9 (patch)
treebcf883e173693e2721d243755493b9679742831e /src/subcommands/ma/diagnostics
parent0d36aebed69b154903e158a4c0f5cc8707cf5168 (diff)
make subcommand subfunction that were missed previously
Diffstat (limited to 'src/subcommands/ma/diagnostics')
-rwxr-xr-xsrc/subcommands/ma/diagnostics7
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
+
+}