1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
freebsd-ports/www/moinmoin/pkg-deinstall
Patrick Li 669c6a0c42 Update to 1.0
PR:		37941
Submitted by:	maintainer
2002-05-14 22:02:22 +00:00

16 lines
222 B
Bash

#!/bin/sh
# $FreeBSD$
#
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
USER=moinmoin
if pw usershow "${USER}" 2>/dev/null 1>&2; then
echo "To delete MoinMoin user permanently, use 'pw userdel ${USER}'"
fi
exit 0