#
# Copyright 1992-98 NCR Corporation
#
# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"@(#)i.AddNoUpdate	1.1	07/03/02 SMI"
#

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
