mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
d716ba9430
Submitted by: HAYASHI Yasushi <yasi@yasi.to>
16 lines
239 B
Bash
16 lines
239 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "POST-DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
USER=www
|
|
|
|
if pw usershow "${USER}" 2>/dev/null 1>&2; then
|
|
echo "To delete WWW (Zope or Apache and so on) user permanently, use 'pw userdel ${USER}'"
|
|
fi
|
|
|
|
exit 0
|