#!/bin/sh # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ ${NETWORKING} = "no" ] && exit 0 # See how we were called. case "$1" in start) echo -n "Starting name server: " daemon named echo touch /var/lock/subsys/named ;; stop) echo -n "Shutting down name server: " killproc named rm -f /var/lock/subsys/named echo ;; *) echo "Usage: named {start|stop}" exit 1 esac