1998-05-03 05:11:52 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
|
|
|
# from named.restart 5.4 (Berkeley) 6/27/89
|
1999-08-28 01:35:59 +00:00
|
|
|
# $FreeBSD$
|
1998-05-03 05:11:52 +00:00
|
|
|
#
|
|
|
|
|
2001-04-11 02:12:14 +00:00
|
|
|
if [ -r /etc/defaults/rc.conf ]; then
|
|
|
|
. /etc/defaults/rc.conf
|
|
|
|
source_rc_confs
|
|
|
|
elif [ -r /etc/rc.conf ]; then
|
|
|
|
. /etc/rc.conf
|
|
|
|
fi
|
2001-06-14 04:34:40 +00:00
|
|
|
exec %DESTSBIN%/%INDOT%ndc -n ${named_program} restart ${named_flags}
|