From e0a57d039dec42526e5f3241a0439b04f17d4ee5 Mon Sep 17 00:00:00 2001 From: Matthew Harmsen Date: Wed, 1 Aug 2012 21:36:28 -0700 Subject: PKI Deployment Scriptlets * PKI TRAC Ticket #279 - Dogtag 10: Fix remaining 'cloning' issues in 'pkispawn' . . . * PKI TRAC Ticket #280 - Dogtag 10: Fix remaining issues in 'pkidestroy' related to deletion of more than one instance . . . * PKI TRAC Ticket #281 - Dogtag 10: Fix 'pkidaemon'/'operations' issue to handle individual instance . . . --- base/deploy/scripts/pkidaemon | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'base/deploy/scripts/pkidaemon') diff --git a/base/deploy/scripts/pkidaemon b/base/deploy/scripts/pkidaemon index 02b02370f..74f69e968 100755 --- a/base/deploy/scripts/pkidaemon +++ b/base/deploy/scripts/pkidaemon @@ -56,6 +56,20 @@ case $command in stop exit $? ;; + start_all) + start_all + exit $? + ;; + restart_all) + restart_all + exit $? + ;; + stop_all) + echo "An exit status of '143' refers to the 'systemd' method of using"\ + "'SIGTERM' to shutdown a Java process and can safely be ignored." + stop_all + exit $? + ;; condrestart|force-restart|try-restart) [ ! -f ${lockfile} ] || restart echo "The '${command}' action is TBD." -- cgit