#!/bin/sh
#
# yppasswdd:    Starts the yp-passwdd, the YP password changing server
#
# Version:      @(#) /etc/rc.d/init.d/yppasswdd 1.0
#
# chkconfig: - 66 34
# description:  yppasswdd is the RPC server that lets users  change  their \
#		passwords  in  the presence of NIS (a.k.a. YP). It must be \
#		run on the NIS master server for that NIS domain. The client \
#		program is knwon as yppasswd in most cases.
# processname: rpc.yppasswdd

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

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

RETVAL=0

# See how we were called.
case "$1" in
  start)
	echo -n "Starting YP passwd service: "
	daemon rpc.yppasswdd
	RETVAL=$?
	echo
	[ $RETVAL -eq 0 ] && touch /var/lock/subsys/yppasswdd
	;;
  stop)
	echo -n "Stopping YP passwd service: "
	killproc rpc.yppasswdd
	RETVAL=$?
	[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/yppasswdd
        echo
	;;
  status)
	status rpc.yppasswdd
	RETVAL=$?
	;;
  restart|reload)
	$0 stop
	$0 start
	RETVAL=$?
	;;
  *)
	echo "Usage: $0 {start|stop|status|restart}"
	exit 1
esac

exit $RETVAL

