e4c6263ada
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>
16 lines
411 B
Bash
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
|