a93eac9da5
Mon Jul 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-2 - Don't use rndc status, it's not yet implemented (#48839) Sun Jul 08 2001 Florian La Roche <Florian.LaRoche@redhat.de> - update to 9.1.3 release Tue Jul 03 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc3.1 - Fix up rndc configuration and improve security (#46586) Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc2.2 - Sync with caching-nameserver-7.1-6 Mon Jun 25 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc2.1 - Update to rc2 Fri Jun 01 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.3 - Remove resolv.conf(5) man page, it's now in man-pages Thu May 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.2 - Add named.conf man page from bind 8.x (outdated, but better than nothing, - Rename the rndc key (#42895) - Add dnssec* man pages Mon May 28 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.3-0.rc1.1 - 9.1.3rc1 - s/Copyright/License/ Mon May 07 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.2-1 - 9.1.2 final. No changes between 9.1.2-0.rc1.1 and this one, except for the version number, though. Thu May 03 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.2-0.rc1.1 - 9.1.2rc1 Thu Mar 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 9.1.1-1 - 9.1.1
108 lines
1.9 KiB
Bash
Executable File
108 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# named This shell script takes care of starting and stopping
|
|
# named (BIND DNS server).
|
|
#
|
|
# chkconfig: - 55 45
|
|
# description: named (BIND) is a Domain Name Server (DNS) \
|
|
# that is used to resolve host names to IP addresses.
|
|
# probe: true
|
|
|
|
# Source function library.
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
# Source networking configuration.
|
|
. /etc/sysconfig/network
|
|
|
|
# Check that networking is up.
|
|
[ "${NETWORKING}" = "no" ] && exit 0
|
|
|
|
[ -f /etc/sysconfig/named ] && . /etc/sysconfig/named
|
|
|
|
[ -f /usr/sbin/named ] || exit 0
|
|
|
|
[ -f /etc/named.conf ] || exit 0
|
|
|
|
RETVAL=0
|
|
prog="named"
|
|
|
|
start() {
|
|
# Start daemons.
|
|
echo -n $"Starting $prog: "
|
|
if [ -n "${ROOTDIR}" -a "x${ROOTDIR}" != "x/" ]; then
|
|
OPTIONS="${OPTIONS} -t ${ROOTDIR}"
|
|
fi
|
|
daemon named -u named ${OPTIONS}
|
|
RETVAL=$?
|
|
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/named
|
|
echo
|
|
return $RETVAL
|
|
}
|
|
stop() {
|
|
# Stop daemons.
|
|
echo -n $"Stopping $prog: "
|
|
killproc named
|
|
RETVAL=$?
|
|
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/named
|
|
echo
|
|
return $RETVAL
|
|
}
|
|
rhstatus() {
|
|
# FIXME: use this once it's implemented
|
|
# /usr/sbin/rndc status
|
|
# return $?
|
|
PIDS=`/sbin/pidof named`
|
|
if [ -z "$PIDS" ]; then
|
|
echo $"$prog not running."
|
|
return 1
|
|
else
|
|
echo $"$prog is running, PIDs: $PIDS."
|
|
return 0
|
|
fi
|
|
}
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
reload() {
|
|
/usr/sbin/rndc reload >/dev/null 2>&1 || /usr/bin/killall -HUP named
|
|
return $?
|
|
}
|
|
probe() {
|
|
# named knows how to reload intelligently; we don't want linuxconf
|
|
# to offer to restart every time
|
|
/usr/sbin/rndc reload >/dev/null 2>&1 || echo start
|
|
return $?
|
|
}
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
status)
|
|
rhstatus
|
|
;;
|
|
restart)
|
|
restart
|
|
;;
|
|
condrestart)
|
|
[ -f /var/lock/subsys/named ] && restart
|
|
;;
|
|
reload)
|
|
reload
|
|
;;
|
|
probe)
|
|
probe
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {start|stop|status|restart|condrestart|reload|probe}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|
|
|