summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Bogusz2008-02-08 19:23:01 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commit439eba016edbbbc1f3b1bdf91a2f755422f3ae74 (patch)
treee08d23eff5864db890faadb87a1f2638c5b966df
parentc1eed053efaba9c5d3183e2787b0ba13b3ac389c (diff)
downloadpowersoftplus-439eba016edbbbc1f3b1bdf91a2f755422f3ae74.zip
powersoftplus-439eba016edbbbc1f3b1bdf91a2f755422f3ae74.tar.gz
- use functions
- force-reload is not supposed to start service if not running - added try-restart action Changed files: powersoftplus.init -> 1.6
-rw-r--r--powersoftplus.init47
1 files changed, 34 insertions, 13 deletions
diff --git a/powersoftplus.init b/powersoftplus.init
index 76f53cc..565b3c2 100644
--- a/powersoftplus.init
+++ b/powersoftplus.init
@@ -16,11 +16,7 @@
# Get service config - may override defaults
[ -f /etc/sysconfig/powersoftplus ] && . /etc/sysconfig/powersoftplus
-RETVAL=0
-# See how we were called.
-case "$1" in
- start)
- # Check if the service is already running?
+start() {
if [ ! -f /var/lock/subsys/powersoftplus ]; then
rm -f /var/run/power.pid
msg_starting powersoftplus
@@ -30,10 +26,10 @@ case "$1" in
else
msg_already_running powersoftplus
fi
- ;;
- stop)
+}
+
+stop() {
if [ -f /var/lock/subsys/powersoftplus ]; then
- # Stop daemons.
msg_stopping powersoftplus
killproc powersoftplus
ipcrm -S 0x78010096 > /dev/null 2>&1
@@ -41,11 +37,36 @@ case "$1" in
else
msg_not_running powersoftplus
fi
+}
+
+condrestart() {
+ if [ -f /var/lock/subsys/powersoftplus ]; then
+ stop
+ start
+ else
+ msg_not_running powersoftplus
+ RETVAL=$1
+ fi
+}
+
+RETVAL=0
+# See how we were called.
+case "$1" in
+ start)
+ start
;;
- restart|force-reload)
- $0 stop
- $0 start
- exit $?
+ stop)
+ stop
+ ;;
+ restart)
+ stop
+ start
+ ;;
+ try-restart)
+ condrestart 0
+ ;;
+ force-reload)
+ condrestart 7
;;
status)
status powersoftplus
@@ -53,7 +74,7 @@ case "$1" in
exit $?
;;
*)
- msg_usage "$0 {start|stop|restart|force-reload|status}"
+ msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
exit 3
esac