# Remove any vestiges of a PSF printer from the AIX system
if test -z "$1"
then
   echo "Syntax: rmPsfPrtr psf-printer-name"
   exit 1
fi
echo "rmPsfPrtr: Deleting system data associated with printer" $1
/usr/lpp/psf/bin/psfctl -kdt $1
rm -rf /var/psf/$1
#
#    Version      Date     Time    Owner   Comment
# ------------- -------- -------- -------- ----------------------------
# V             03/10/94 07:41:15 hlava    Original version
# V1.2          03/16/94 10:52:24 hlava    Added multiple queue device creation/deletion
# V1.3          03/21/94 10:05:41 hlava    Removed AIX queues & queue devices
# V1.4          08/29/94 05:36:42 hlava    IUT fixes
