baf2613128
Add patches for -current. PR: ports/19665 (update to 6.1.16), ports/19914 (update to 6.1.17) Submitted by: Naoki IDO <ido@hitachi-ms.co.jp> Additional patches by: knu
14 lines
319 B
Bash
14 lines
319 B
Bash
#!/bin/sh
|
|
|
|
umask 027
|
|
if [ -x /usr/local/sbin/delegated ]; then
|
|
echo -n ' delegated'
|
|
/usr/local/sbin/delegated -P8080 -Txt \
|
|
ADMIN=delegate-master@your.host.domain \
|
|
CHARCODE=JIS \
|
|
CACHEDIR=/var/spool/delegate/cache \
|
|
EXPIRE=7d \
|
|
RELIABLE=hostname \
|
|
> /dev/null 2>&1
|
|
fi
|