#!/bin/sh
set -e
if [ "$1" = purge ]
then
    CENCAT=/etc/sgml/xml2rfc.cat
    rm -f ${CENCAT} ${CENCAT}.old
fi
exit 0
