12 lines
471 B
Bash
12 lines
471 B
Bash
IcapdSetup() {
|
|
# Show address/port where icapd listening.
|
|
icapd_port=`IniKeyValues $CONFDIR/drweb-icapd.ini Icapd BindPort`
|
|
icapd_addr=`IniKeyValues $CONFDIR/drweb-icapd.ini Icapd BindAddress`
|
|
echo
|
|
echo "drweb-icapd listens port $icapd_port on $icapd_addr."
|
|
|
|
# Show the help message pointing to some proxy setup docs.
|
|
echo
|
|
echo 'NOTE: If you need to set up a proxy, refer to Dr.Web for Internet Gateways documentation for more details.'
|
|
}
|