freebsd-ports/games/pvpgn/pkg-deinstall
Chris Rees 10f68deeb5 - Use USERS and GROUPS
PR:		ports/157592
Submitted by:	Chris Rees <utisoft@gmail.com>
Approved by:	rene (mentor), maintainer timeout (29 days)
2011-07-03 15:16:04 +00:00

15 lines
250 B
Bash

#!/bin/sh
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
LOGDIR=/var/log/pvpgn
PIDDIR=/var/run/pvpgn
rm -Rf ${PIDDIR}
echo "If you wish to delete pvpgn data and log files, "
echo "remove '%%PVPGN_DIR%%' and '${LOGDIR}' directories."
exit 0