summaryrefslogtreecommitdiffstats
path: root/system/c-icap/README
diff options
context:
space:
mode:
author Jeremy HOCDE <jeremyhocde@gmail.com>2017-07-20 20:07:11 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-07-22 06:56:17 +0700
commit43be981b640a597a525d85add4deb23f9c164a44 (patch)
tree4afc330a5204f0883b82e6c1512d004d7b893abb /system/c-icap/README
parentf52b58e1e972dd41dd8ba82096331b5b0a2a63d8 (diff)
downloadslackbuilds-43be981b640a597a525d85add4deb23f9c164a44.tar.gz
slackbuilds-43be981b640a597a525d85add4deb23f9c164a44.tar.xz
system/c-icap: Added (ICAP server).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'system/c-icap/README')
-rw-r--r--system/c-icap/README21
1 files changed, 21 insertions, 0 deletions
diff --git a/system/c-icap/README b/system/c-icap/README
new file mode 100644
index 0000000000..fd0615699f
--- /dev/null
+++ b/system/c-icap/README
@@ -0,0 +1,21 @@
+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