#! /bin/ksh # # Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved. # # Enable appropriate NIS daemons based on the current configuration. enable () { /usr/sbin/svcadm enable -s -t $1 ret=$? [ $ret = 0 ] || echo "ypstart: unable to enable $1" if [ "`/usr/bin/svcprop -p restarter/state $1`" = "maintenance" ]; then echo "ypstart: unable to enable $1; in maintenance" ret=1 fi return $ret } enable svc:/network/nis/domain:default if [ $? != 0 ]; then echo "ERROR: Could not enable svc:/network/nis/domain." exit 1 fi domain=`domainname` if [ -z "$domain" ]; then echo "ERROR: Default domain is not defined. \c" echo "Configure \"svc:/network/nis/domain\" to set the domain." exit 1 fi echo "starting NIS (YP server) services:\c" zone=`/usr/sbin/zonename` if [ -d /var/yp/$domain ]; then state=`/usr/bin/svcprop -p restarter/state network/nis/server:default` [ "$state" = "disabled" ] && if [ -n "`pgrep -z $zone ypserv`" ]; then echo "ypstart: ypserv already running?" fi enable svc:/network/nis/server:default && echo " ypserv\c" YP_SERVER=TRUE # remember we're a server for later # check to see if we are the master if [ -f /var/yp/NISLDAPmapping ]; then passwdfile=/var/yp/$domain/LDAP_passwd.byname else passwdfile=/var/yp/$domain/passwd.byname fi master=`/usr/sbin/makedbm -u $passwdfile | grep YP_MASTER_NAME \ | nawk '{ print tolower($2) }'` fi # Enabling the YP client is not strictly necessary, but it is # traditional. state=`/usr/bin/svcprop -p restarter/state network/nis/client:default` [ "$state" = "disabled" ] && if [ -n "`pgrep -z $zone ypbind`" ]; then echo "ypstart: ypbind already running?" fi enable svc:/network/nis/client:default && echo " ypbind\c" # do a ypwhich to force ypbind to get bound ypwhich > /dev/null 2>&1 if [ "$YP_SERVER" = TRUE ]; then # Are we the master server? If so, start the # ypxfrd, rpc.yppasswdd and rpc.ypupdated daemons. hostname=`uname -n | tr '[A-Z]' '[a-z]'` if [ "$master" = "$hostname" ]; then enable svc:/network/nis/xfr:default && echo " ypxfrd\c" enable svc:/network/nis/passwd:default && echo " rpc.yppasswdd\c" if [ ! -f /var/yp/NISLDAPmapping -a -f /var/yp/updaters ]; then enable svc:/network/nis/update:default && echo " rpc.ypupdated\c" fi fi fi # As this operation is likely configuration changing, restart the # name-services milestone (such that configuration-sensitive services # are in turn restarted). /usr/sbin/svcadm restart milestone/name-services echo " done."