#!/bin/sh
echo " Looking for configuration files in $VARDIR/conf/..."
if [ -r $VARDIR/conf/objects.C ] ; then
	cp -p $VARDIR/conf/objects.C $VARDIR/conf/objects.C.orig
else
	echo ""
	echo " ERROR: Unable to find the original objects.C in "
        echo "         $VARDIR/conf/   "
	echo " The default empty network object database will be used"
	echo ""
fi
exit 0
