slackbuilds/system/c-icap
Heinz Wiesinger 63daf9f79a All: Support $PRINT_PACKAGE_NAME env var
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2021-07-17 21:55:09 +02:00
..
README system/c-icap: Added (ICAP server). 2017-07-22 06:56:17 +07:00
c-icap.SlackBuild All: Support $PRINT_PACKAGE_NAME env var 2021-07-17 21:55:09 +02:00
c-icap.conf system/c-icap: Added (ICAP server). 2017-07-22 06:56:17 +07:00
c-icap.info system/c-icap: Remove duplicate source. 2017-07-22 06:58:34 +07:00
doinst.sh system/c-icap: Added (ICAP server). 2017-07-22 06:56:17 +07:00
rc.c-icap system/c-icap: Added (ICAP server). 2017-07-22 06:56:17 +07:00
slack-desc system/c-icap: Added (ICAP server). 2017-07-22 06:56:17 +07:00

README

c-icap is an implementation of an ICAP server. It can be used with HTTP
proxies that support the ICAP protocol to implement content adaptation
and filtering services.

In order to start c-icap at boot and stop it properly at shutdown,
make sure rc.c-icap is executable and add the following lines to
the following files:

        /etc/rc.d/rc.local
        ==================
        # Startup c-icap
        if [ -x /etc/rc.d/rc.c-icap ]; then
                /etc/rc.d/rc.c-icap start
        fi

        /etc/rc.d/rc.local_shutdown
        ===========================
        # Stop c-icap
        if [ -x /etc/rc.d/rc.c-icap ]; then
                /etc/rc.d/rc.c-icap stop
        fi