summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorankry2003-05-25 16:18:46 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commitefe2b5749b707e610e0318895a4100f2507f4614 (patch)
tree622f7e5ee0494b31bccd60976804cf538353ac02
parent337c04187248d08b26464311c1c25aeeba2166c8 (diff)
downloadxorg-app-xfs-efe2b5749b707e610e0318895a4100f2507f4614.zip
xorg-app-xfs-efe2b5749b707e610e0318895a4100f2507f4614.tar.gz
- LSB conformance
Changed files: xfs.init -> 1.10
-rw-r--r--xfs.init13
1 files changed, 6 insertions, 7 deletions
diff --git a/xfs.init b/xfs.init
index 19fbe58..8e5af30 100644
--- a/xfs.init
+++ b/xfs.init
@@ -19,7 +19,7 @@ if [ -f /etc/sysconfig/xfs ] ; then
. /etc/sysconfig/xfs
fi
-
+RETVAL=0
# See how we were called.
case "$1" in
start)
@@ -34,26 +34,25 @@ case "$1" in
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/xfs
else
msg_already_running "X Font Server"
- exit 1
fi
;;
stop)
if [ -f /var/lock/subsys/xfs ]; then
msg_stopping "X Font Server"
killproc xfs
- RETVAL=$?
rm -f /var/lock/subsys/xfs
else
msg_not_running "X Font Server"
- exit 1
fi
;;
status)
status xfs
+ exit $?
;;
restart)
$0 stop
$0 start
+ exit $?
;;
reload|force-reload)
if [ -f /var/lock/subsys/xfs ]; then
@@ -61,13 +60,13 @@ case "$1" in
killproc xfs -USR1
RETVAL=$?
else
- msg_not_running "X Font Server"
- exit 1
+ msg_not_running "X Font Server" >&2
+ exit 7
fi
;;
*)
msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
- exit 1
+ exit 3
esac
exit $RETVAL