1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/mail/sympa5/pkg-deinstall
Renato Botelho 8d1a3bfcb4 Add sympa5 5.1, sympa is an electronic mailing list manager.
PR:		ports/86599
Submitted by:	Olivier Girard <Olivier.Girard@Univ-Angers.fr>
2005-09-29 13:02:53 +00:00

22 lines
363 B
Bash

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