1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/mail/sympa/pkg-deinstall
Dmitry Sivachenko 86b921b2b8 Update to version 4.0.a8.
Correct several typos.

Submitted by:	maintainer
2003-12-22 08:52:11 +00:00

16 lines
216 B
Bash

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