Sophie

Sophie

distrib > Fedora > 14 > i386 > by-pkgid > 2e8fc4942ec2c3d94e34b700ce799894 > files > 1

cwdaemon-0.9.4-11.fc12.i686.rpm

#!/bin/bash
#
# cwdaemon.init for version 0.9.4.  starts or stops cwdaemon.
# This file should be placed in /etc/rc.d/init.d/
#
# chkconfig: - 60 50
# description: Cwdaemon is a small daemon which uses the pc parallel or serial port
#              and a simple transistor switch to output morse code to a transmitter
#              from a text message sent to it via the udp internet protocol.
# processname: cwdaemon
# config: /etc/sysconf/cwdaemon

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

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0

[ -x /usr/sbin/cwdaemon ] || exit 0

# Source cwdaemon configuration.
[ -r /etc/sysconfig/cwdaemon ] && . /etc/sysconfig/cwdaemon

RETVAL=0
prog="cwdaemon"

start() {
        # Start daemons.
        echo -n $"Starting $prog: "
        daemon /usr/sbin/cwdaemon $OPTS
        RETVAL=$?
        [ $RETVAL -eq 0 ] && touch /var/lock/subsys/cwdaemon
        echo
        return $RETVAL
}

stop() {
        # Stop daemons.
        echo -n $"Shutting down $prog: "
        killproc $prog
        RETVAL=$?
        echo
        [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/cwdaemon
        return $RETVAL
}

# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  restart|reload)
        stop
        start
        RETVAL=$?
        ;;
  condrestart)
        if [ -f /var/lock/subsys/cwdaemon ]; then
            stop
            start
            RETVAL=$?
        fi
        ;;
  status)
        status $prog
        RETVAL=$?
        ;;
  *)
        echo $"Usage: $0 {start|stop|restart|condrestart|status}"
        exit 1
esac

exit $RETVAL