#!/bin/sh # # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # # Copyright 2006 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "%Z%%M% %I% %E% SMI" # # Enable appropriate NIS daemons based on the current configuration. proc enable { /usr/sbin/svcadm enable -t $1 test $Status = 0 || echo "ypstart: unable to enable $1" if test $(/usr/bin/svcprop -p restarter/state $1) = "maintenance" { echo "ypstart: unable to enable $1; in maintenance" } } setvar domain = $(domainname) if test -z $domain { echo "ERROR: Default domain is not defined. \c" echo "Use \"domainname\" to set the domain." exit 1 } echo "starting NIS (YP server) services:\c" setvar zone = $(/sbin/zonename) if test -d /var/yp/$domain { setvar state = $(/usr/bin/svcprop -p restarter/state network/nis/server:default) test $state = "disabled" && if test -n $(pgrep -z $zone ypserv) { echo "ypstart: ypserv already running?" } enable svc:/network/nis/server:default && echo " ypserv\c" setvar YP_SERVER = 'TRUE' # remember we're a server for later # check to see if we are the master if test -f /var/yp/NISLDAPmapping { setvar passwdfile = "/var/yp/$domain/LDAP_passwd.byname" } else { setvar passwdfile = "/var/yp/$domain/passwd.byname" } setvar master = $(/usr/sbin/makedbm -u $passwdfile | grep YP_MASTER_NAME \ | nawk '{ print tolower($2) }) } # Enabling the YP client is not strictly necessary, but it is # traditional. setvar state = $(/usr/bin/svcprop -p restarter/state network/nis/client:default) test $state = "disabled" && if test -n $(pgrep -z $zone ypbind) { echo "ypstart: ypbind already running?" } enable svc:/network/nis/client:default && echo " ypbind\c" # do a ypwhich to force ypbind to get bound ypwhich > /dev/null 2>&1 if test $YP_SERVER = TRUE { # Are we the master server? If so, start the # ypxfrd, rpc.yppasswdd and rpc.ypupdated daemons. setvar hostname = $(uname -n | tr '[A-Z]' '[a-z]) if test $master = $hostname { enable svc:/network/nis/xfr:default && echo " ypxfrd\c" enable svc:/network/nis/passwd:default && echo " rpc.yppasswdd\c" if test ! -f /var/yp/NISLDAPmapping -a -f /var/yp/updaters { enable svc:/network/nis/update:default && echo " rpc.ypupdated\c" } } } # 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."