#!/bin/sh
#
# ldirectord Linux Director Daemon
#
# chkconfig: 2345 92 40
# description: Start and stop ldirectord on non-heartbeat systems
# Using the config file /etc/ha.d/ldirectord.cf
#
# processname: ldirectord
# config: /etc/ha.d/ldirectord.cf
#
# Author: Horms <horms@vergenet.net>
# Released: April 2000
# Licence: GNU General Public Licence
#
DAEMON=/usr/sbin/ldirectord
# Source function library.
if
[ -f /etc/rc.d/init.d/functions ]
then
. /etc/rc.d/init.d/functions
else
action() {
echo -n "$1... "
shift
$@
stat=$?
if [ $stat = 0 ]; then
echo success
else
echo failure
fi
return $stat
}
fi
[ -x $DAEMON ] || exit 0
######################################################################
# Read arument and take action as appropriate
######################################################################
case "$1" in
start)
action "Starting ldirectord" $DAEMON start
;;
stop)
action "Stopping ldirectord" $DAEMON stop
;;
restart)
action "Restarting ldirectord" $DAEMON restart
;;
try-restart)
action "Try-Restarting ldirectord" $DAEMON try-restart
;;
status)
$DAEMON status
;;
reload)
action "Reloading ldirectord" $DAEMON reload
;;
force-reload)
action "Force-Reloading ldirectord" $DAEMON force-reload
;;
*)
echo "Usage: ldirectord
{start|stop|restart|try-restart|status|reload|force-reload}"
exit 1
esac
exit $?
syntax highlighted by Code2HTML, v. 0.9.1