mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
9b85add6f8
General purpose TCP/IP proxy system
14 lines
314 B
Bash
14 lines
314 B
Bash
#!/bin/sh
|
|
|
|
if [ -x /usr/local/sbin/delegated ]; then
|
|
echo -n ' delegated'
|
|
/usr/local/sbin/delegated -P8080 \
|
|
MANAGER=delegate-master@your.host.domain \
|
|
CHARCODE=JIS \
|
|
CACHEDIR=/var/spool/delegate/cache \
|
|
EXPIRE=7d \
|
|
RELIABLE=hostname \
|
|
> /dev/null 2>&1
|
|
|
|
fi
|