1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/russian/apache13/pkg-deinstall
Ying-Chieh Liao c4a1f113e3 upgrade to 1.3.26PL30.15
PR:		40187
Submitted by:	maintainer
2002-07-08 09:27:37 +00:00

16 lines
307 B
Bash

#!/bin/sh
# $FreeBSD: /tmp/pcvs/ports/russian/apache13/Attic/pkg-deinstall,v 1.1 2002-07-08 09:27:37 ijliao Exp $
#
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
USER=www
if pw usershow "${USER}" 2>/dev/null 1>&2; then
echo "To delete Apache user permanently, use 'pw userdel ${USER}'"
fi
exit 0