mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
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
|