#!/bin/sh
if [ -r /var/tmp/cdb.${PatchNum} ]
	then
	/usr/bin/cp /var/tmp/cdb.${PatchNum} ${PATCHDB}/${PatchNum}
	/usr/bin/rm /var/tmp/cdb.${PatchNum}
	exit 0
	else
	echo "Error storing cdb backout copy."
	exit 1
fi
# Never reached.
exit 0
