summaryrefslogblamecommitdiff
path: root/www/interchange/pkg-deinstall
blob: 138dbbe1bb41826504522d2391efb7409289d857 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                   
#!/bin/sh
#
# $FreeBSD$
#

if [ "$2" != "POST-DEINSTALL" ]; then
    exit 0
fi

USER=interch

# Don't delete it, there may be ${USER} owned files around.
pw usershow "${USER}" >/dev/null 2>&1 \
	&& echo -e "*\n* To delete the user '${USER}' use 'pw userdel ${USER}'.\n*"

exit 0