From: rmccabe@sourceware.org <rmccabe@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] conga/ricci/modules/cluster/clumon/init.d modc ...
Date: 20 Sep 2007 04:50:02 -0000 [thread overview]
Message-ID: <20070920045002.15917.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: conga
Changes by: rmccabe at sourceware.org 2007-09-20 04:50:02
Modified files:
ricci/modules/cluster/clumon/init.d: modclusterd
Log message:
Tweak exit failure codes to be more LSB-compliant.
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/modules/cluster/clumon/init.d/modclusterd.diff?cvsroot=cluster&r1=1.3&r2=1.4
--- conga/ricci/modules/cluster/clumon/init.d/modclusterd 2007/09/11 02:45:27 1.3
+++ conga/ricci/modules/cluster/clumon/init.d/modclusterd 2007/09/20 04:50:01 1.4
@@ -1,8 +1,8 @@
#!/bin/sh
#
-# Copyright (C) 2005 Red Hat, Inc.
+# Copyright (C) 2005-2007 Red Hat, Inc.
#
-# This program is Free Software. You may modify and/or redistribute it under
+# This program is Free Software. You may modify and/or redistribute it under
# the terms of the GNU General Public License version 2, or (at your option)
# any later version.
#
@@ -31,12 +31,12 @@
#
# Only root wants to run this...
#
-[ `id -u` = 0 ] || exit 0
+[ `id -u` = 0 ] || exit 4
#
# If we're not configured, then don't start anything.
#
-[ "${NETWORKING}" = "yes" ] || exit 0
+[ "${NETWORKING}" = "yes" ] || exit 1
#[ -f "$CFG_FILE" ] || exit 0
@@ -46,57 +46,57 @@
daemon $MODCLUSTERD
rtrn=$?
if [ $rtrn -eq 0 ]; then
- touch $LOCKFILE
- /usr/bin/logger -t $MODCLUSTERD "startup succeeded"
+ touch $LOCKFILE
+ /usr/bin/logger -t $MODCLUSTERD "startup succeeded"
else
- /usr/bin/logger -t $MODCLUSTERD "startup failed"
+ /usr/bin/logger -t $MODCLUSTERD "startup failed"
+ rtrn=1
fi
echo
- ;;
+ ;;
restart)
$0 stop
sleep 8
$0 start
rtrn=$?
- ;;
+ ;;
status)
status $MODCLUSTERD
rtrn=$?
- ;;
+ ;;
stop)
echo -n "Shutting down $ID: "
killproc $MODCLUSTERD SIGTERM
rtrn=$?
if [ $rtrn -eq 0 ]; then
- rm -f $PIDFILE
- rm -f $LOCKFILE
- /usr/bin/logger -t $MODCLUSTERD "shutdown succeeded"
+ rm -f $PIDFILE
+ rm -f $LOCKFILE
+ /usr/bin/logger -t $MODCLUSTERD "shutdown succeeded"
else
- /usr/bin/logger -t $MODCLUSTERD "shutdown failed"
+ /usr/bin/logger -t $MODCLUSTERD "shutdown failed"
+ rtrn=1
fi
- rtrn=0
echo
- ;;
+ ;;
- condrestart)
- if [ -f ${PIDFILE} ] ; then
- $0 restart
- rtrn=$?
- fi
- ;;
-
- reload)
- rtrn=0
- ;;
+ condrestart)
+ if [ -f ${PIDFILE} ] ; then
+ $0 restart
+ rtrn=$?
+ fi
+ ;;
+
+ reload)
+ rtrn=3
+ ;;
*)
echo $"Usage: $0 {start|stop|reload|restart|status}"
- rtrn=1
- ;;
-
+ rtrn=3
+ ;;
esac
exit $rtrn
next reply other threads:[~2007-09-20 4:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-20 4:50 rmccabe [this message]
-- strict thread matches above, loose matches on Subject: below --
2007-10-22 19:26 [Cluster-devel] conga/ricci/modules/cluster/clumon/init.d modc rmccabe
2006-10-14 18:52 kupcevic
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070920045002.15917.qmail@sourceware.org \
--to=rmccabe@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).