aboutsummaryrefslogtreecommitdiff
path: root/databases/msql3/pkg-deinstall
blob: 8275facaa13fbdb519aada41e957f2559de08aa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# $FreeBSD$
#

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

USER=msql

if pw usershow "${USER}" 2>/dev/null 1>&2; then
	echo "To delete MSQL user permanently, use 'pw userdel ${USER}'"
fi

exit 0