openbsd-ports/mail/solid-pop3d/pkg/DEINSTALL
2000-05-26 01:51:34 +00:00

18 lines
353 B
Bash

#!/bin/sh
do-deinstall ()
{
if [ -d /var/spool/spop3d ]; then
rm -rf /var/spool/spop3d
fi
if [ -f /etc/spop3d.conf ]; then
echo "+------------"
echo "| If you are removing this package and not planning"
echo "| to re-install it at a future time, it is safe to"
echo "| remove /etc/spop3d.conf."
echo "+------------"
fi
}
do-deinstall