#	Copyright 1992-98 NCR Corporation
#	Copyright (c) 1999 Sun Microsystems, Inc.
#
#       @(#)i.AddNoUpdate 3.1.1.3 99/09/15
#

endnotok() {
	   exit 3
}
trap 'endnotok' 1 2 3 15

#
#    The AddNoUpdate class is used for any files that should
#    not be replaced on an update.
#
while read src dest ; do
	echo ${dest}
       	if [ ! -f ${dest} ] ; then
		cp -p ${src} ${dest}
	fi
done

exit 0
