#!/bin/sh
#
#     tiger - A UN*X security checking system
#     Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
#
#     Please see the file `COPYING' for the complete copyright notice.
#
# NeXT/3/gen_export_sets - 06/14/93
#
#-----------------------------------------------------------------------------
#

COUNT=1

/usr/etc/nidomain -l | 
$AWK '{ print substr($1,5,length($1) - 4) }' | (
    while read NETINFO_TAG
    do
	EXPORT_SET=$WORKDIR/export.set$COUNT.$$
	/usr/bin/nidump -t exports localhost/$NETINFO_TAG > $EXPORT_SET
	echo "NetInfo($NETINFO_TAG)" > $EXPORT_SET.src
	echo $EXPORT_SET
	COUNT=`$EXPR $COUNT + 1`
    done
    exit $COUNT
)

COUNT=$?

[ -r /etc/exports ] && {
	EXPORT_SET=$WORKDIR/export.set$COUNT.$$
	$GREP -v '^#' /etc/exports > $EXPORT_SET
	echo "/etc/exports" > $EXPORT_SET.src
	echo $EXPORT_SET
}
