config root man

Current Path : /compat/linux/proc/68247/cwd/usr/src/usr.sbin/rpc.ypupdated/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //compat/linux/proc/68247/cwd/usr/src/usr.sbin/rpc.ypupdated/ypupdate

#!/bin/sh
#
# This script is invoked by rpc.ypupdatedd to propagate NIS maps
# after the master map databases have been modified. It expects
# to be passed two arguments: the name of the map that was updated
# and the name of the domain where the map resides.
# These are passed to /var/yp/Makefile.
#
# Comment out the LOG=yes line to disable logging.
#
# $FreeBSD: release/9.1.0/usr.sbin/rpc.ypupdated/ypupdate 50479 1999-08-28 01:35:59Z peter $
#

LOG=yes
LOGFILE=/var/yp/ypupdate.log

umask 077

if [ ! -f $LOGFILE ];
then
	/usr/bin/touch $LOGFILE
	echo "# Edit /usr/libexec/yppwupdate to disable" >> $LOGFILE
	echo "# logging to this file from yppasswdd." >> $LOGFILE
	echo -n "# Log started on: " >> $LOGFILE
	/bin/date >> $LOGFILE
fi

if [ ! $LOG ];
then
	cd /var/yp/$2; /usr/bin/make -f ../Makefile $1 2>&1
else
	cd /var/yp/$2; /usr/bin/make -f ../Makefile $1 >> $LOGFILE
fi

Man Man