Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 331177f1cf202be42c638edbb206ddef > files > 24

gpppwrap-1.0-3mdk.i586.rpm

#!/bin/sh
#
# start/stop the DNS prxy dnrd
# This dnrd is started here in order to make /etc/host available
# via DNS 
#
# processname: dnrd
# Source function library.
. /etc/rc.d/init.d/functions

PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:/usr/local/bin
export PATH
[ -x /usr/sbin/dnrd ] || exit 0
RETVAL=0
# See how we were called.
case "$1" in
  start)
        # Start daemons.
        echo -n "Starting dnrd: "
        daemon dnrd
	RETVAL=$?
        ;;
  stop)
        # Stop daemons.
        echo -n "Shutting down dnrd: "
	killproc dnrd
	RETVAL=$?
        ;;
  status)
	status dnrd
	RETVAL=$?
	;;
  restart|reload)
	$0 stop
	$0 start
	RETVAL=$?
	;;
  *)
        echo "Usage: dnrd_rc {start|stop|restart|reload|status}"
        exit 1
esac

exit $RETVAL