aboutsummaryrefslogtreecommitdiff
path: root/www/p5-FCGI-Spawn/pkg-deinstall
blob: a3f009d590e1b25c11ccd9747c24a1eeee5713de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

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

USER=fcgi

if pw usershow "${USER}" 2>/dev/null 1>&2; then
	echo "To delete user permanently, use 'pw userdel ${USER}'. Also, unused groups of that user should be deleted, too"
fi

exit 0