#!/bin/sh
#
# Name: opus_catalog
#
# Description: Generates a catalog (.cat) file for a CDBS delivery.
#              The .cat file lists the rootnames of all reference files
#              in the delivery, indications of whether each is an image or
#              table, and whether the entry is a new reference file (Insertion)
#              or obsolete reference file (Deletion).
#
#
# Called by:   deliver_cdbs.s
#
# Usage: two forms
#          opus_catalog deliveryNumber
#        or
#          opus_catalog
#
#------------------------------------------------------------------------------
export CDBS_DB CDBS_SERVER
if test $# -lt 1
then
opus_catalog.s
else
opus_catalog.s $1
fi
