Sophie

Sophie

distrib > Mandriva > 2006.0 > i586 > media > main-src > by-pkgid > 3e2c9f1d3d9a242ff7b0458080b2f2eb > files > 10

ypserv-2.17-1mdk.src.rpm

#!/bin/sh
#
# ypserv:       Starts the yp-server
#
# Version:      @(#) /etc/init.d/ypserv.init 1.0
#
# Author:       Joerg Mertin <smurphy@stargate.bln.sub.org>
#
# chkconfig: 2345 16 84
# description: ypserv is an implementation of the standard NIS/YP networking \
#              protocol.  It allows network-wide distribution of hostname, \
#              username, and other information databases. This is the NIS \
#              server, and is not needed on NIS clients.
# processname: ypserv
# config: /etc/ypserv.conf

# Source function library.
if [ -f /etc/init.d/functions ] ; then
	. /etc/init.d/functions
elif [ -f /etc/rc.d/init.d/functions ] ; then
	. /etc/rc.d/init.d/functions
else
	exit 0
fi

# getting the YP-Domainname
. /etc/sysconfig/network

RETVAL=0

start() {
	echo -n "Starting YP server services: "
        daemon ypserv
        RETVAL=$?
        echo
	[ $RETVAL -eq 0 ] && touch /var/lock/subsys/ypserv
	return $RETVAL
}

stop() {
        echo -n "Stopping YP server services: "
        killproc ypserv
        RETVAL=$?
        [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ypserv
        echo
	return $RETVAL
}

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

exit $RETVAL