Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
40 righe
902 B
40 righe
902 B
#!@l_prefix@/lib/openpkg/bash @l_prefix@/etc/rc |
|
## |
|
## rc.bind -- Run-Commands for BIND Daemon |
|
## |
|
|
|
%config |
|
bind_enable="yes" |
|
bind_log_numfiles="5" |
|
bind_log_minsize="512K" |
|
bind_log_complevel="9" |
|
|
|
%start -p 200 -u root |
|
if opServiceEnabled bind; then |
|
@l_prefix@/sbin/ndc start |
|
fi |
|
|
|
%stop -p 200 -u root |
|
if opServiceEnabled bind; then |
|
@l_prefix@/sbin/ndc stop |
|
fi |
|
|
|
%restart -u root |
|
if opServiceEnabled bind; then |
|
@l_prefix@/sbin/ndc restart |
|
fi |
|
|
|
%reload -u root |
|
if opServiceEnabled bind; then |
|
@l_prefix@/sbin/ndc reload |
|
fi |
|
|
|
%daily -u root |
|
if opServiceEnabled bind; then |
|
shtool rotate -f \ |
|
-n${bind_log_numfiles} -s${bind_log_minsize} \ |
|
-d -z${bind_log_complevel} -o@l_fsusr@ -g@l_fsgrp@ -m644 \ |
|
-E '@l_prefix@/sbin/ndc restart' \ |
|
@l_prefix@/var/bind/named.log |
|
fi |
|
|
|
|