10f68deeb5
PR: ports/157592 Submitted by: Chris Rees <utisoft@gmail.com> Approved by: rene (mentor), maintainer timeout (29 days)
15 lines
250 B
Bash
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
|