Port EST driver from NetBSD, as it has better support for newer CPUs
[dragonfly.git] / etc / rc.d / named
blob259b43c304ada257ed1a7d3dbfb283e13c28cd79
1 #!/bin/sh
3 # $NetBSD: named,v 1.10 2002/03/22 04:33:59 thorpej Exp $
4 # $FreeBSD: src/etc/rc.d/named,v 1.6 2003/01/12 04:53:54 mtm Exp $
5 # $DragonFly: src/etc/rc.d/named,v 1.6 2005/11/19 21:47:32 swildner Exp $
8 # PROVIDE: named
9 # REQUIRE: SERVERS
10 # BEFORE: DAEMON
12 . /etc/rc.subr
14 name="named"
15 rcvar=`set_rcvar`
16 command="/usr/sbin/${name}"
17 start_precmd="named_precmd"
18 required_dirs="$named_chrootdir" # if it is set, it must exist
19 extra_commands="reload"
21 nuser=bind
23 named_precmd()
25 # Is the user using a sandbox?
26 if [ -z "$named_chrootdir" ]; then
27 rc_flags="-u $nuser $rc_flags"
28 return 0
31 # Change run_rc_commands()'s internal copy of $named_flags
33 rc_flags="-u $nuser -t ${named_chrootdir} $rc_flags"
36 load_rc_config $name
37 # The following variable requires that rc.conf be loaded first
39 required_dirs="$named_chrootdir" # if it is set, it must exist
40 pidfile="${named_chrootdir}${named_pidfile:-/var/run/${name}.pid}"
42 run_rc_command "$1"