aboutsummaryrefslogtreecommitdiffstats
path: root/mail/sympa/pkg-deinstall
blob: 5ec5eec8271121702f3b20f17cd837e0f0eab1cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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