blob: 805880396a17b87509958e944bfb9a2a9cbc344e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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
|