Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 175028128ea28e8e3eb6913cb63d70cc > files > 3

oidentd-2.0.8-9.fc15.src.rpm

#!/bin/sh
#
# oidentd      RFC 1413 identification server
#
# chkconfig:   - 35 65
# description: The identd server provides a means to determine the identity \
#              of a user of a particular TCP connection.  Given a TCP port \
#              number pair, it returns a character string which identifies \
#              the owner of that connection on the server's system.

### BEGIN INIT INFO
# Provides: identd
# Required-Start: $local_fs $network
# Required-Stop: $local_fs $network
# Should-Start: 
# Should-Stop: 
# Default-Start: 
# Default-Stop: 0 1 2 3 4 5 6
# Short-Description: RFC 1413 identification server
# Description:       The identd server provides a means to determine the
#                    identity of a user of a particular TCP connection.
#                    Given a TCP port number pair, it returns a character
#                    string which identifies the owner of that connection
#                    on the server's system.
### END INIT INFO

# Source function library.
. /etc/rc.d/init.d/functions

exec="/usr/sbin/oidentd"
prog="oidentd"
config="/etc/oidentd.conf"

[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog

lockfile=/var/lock/subsys/$prog

start() {
    [ -x $exec ] || exit 5
    [ -f /etc/sysconfig/$prog ] || exit 6
    echo -n $"Starting $prog: "
    daemon $exec $OIDENTD_OPTIONS
    retval=$?
    echo
    [ $retval -eq 0 ] && touch $lockfile
    return $retval
}

stop() {
    echo -n $"Stopping $prog: "
    killproc $prog
    retval=$?
    echo
    [ $retval -eq 0 ] && rm -f $lockfile
    return $retval
}

restart() {
    stop
    start
}

reload() {
    restart
}

force_reload() {
    restart
}

rh_status() {
    status $prog
}

rh_status_q() {
    rh_status &>/dev/null
}


case "$1" in
    start)
        rh_status_q && exit 0
        $1
        ;;
    stop)
        rh_status_q || exit 0
        $1
        ;;
    restart)
        $1
        ;;
    reload)
        rh_status_q || exit 7
        $1
        ;;
    force-reload)
        force_reload
        ;;
    status)
        rh_status
        ;;
    condrestart|try-restart)
        rh_status_q || exit 0
        restart
        ;;
    *)
        echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
        exit 2
esac
exit $?