freebsd-ports/www/c-icap/files/pkg-deinstall.in
Sergey Matveychuk e4c6263ada c-icap is an implementation of an ICAP server. It can be used with HTTP proxies
that support the ICAP protocol such as the Shweby or Squid proxy server.
c-icap allows the addition of modules, which can extend its functionality and
services. For instance, such modules can be loggers, authenticators and
authentication methods or access controlers.

WWW: http://www.chtsanti.net/c-icap

PR:		ports/92760
Submitted by:	Elisey O. Savateev <b3k@mail.ru>
2006-03-27 06:40:18 +00:00

16 lines
411 B
Bash

#!/bin/sh
# $FreeBSD$
if [ "$2" != "POST-DEINSTALL" ]; then
exit 0
fi
CICAP_USER=cicap
if pw usershow "$CICAP_USER" 2>/dev/null 1>&2; then
echo "==============================================================================="
echo "To delete $CICAP_USER user permanently, use 'pw userdel \"$CICAP_USER\"'"
echo "==============================================================================="
fi
exit 0