Skip to main content
Topic: named init scrip modified (Read 1012 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

named init scrip modified

#!/usr/bin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

extra_commands="checkconfig"
extra_started_commands="reload"

: ${NAMED_CONFDIR:=/etc/name}
: ${NAMED_CONFIG:=${NAMED_CONFDIR}/named_config}
: ${NAMED_PIDFILE:=/run/${SVCNAME}.pid}
: ${NAMED_BINARY:=/usr/bin/named}

depend() {
        use logger dns
        if [ "${rc_need+set}" = "set" ] ; then
                : # Do nothing, the user has explicitly set rc_need
        else
                local x warn_addr
                for x in $(awk '/^ListenAddress/{ print $2 }' "$NAMED_CONFIG" 2>/dev/null) ; do
                        case "${x}" in
                                0.0.0.0|0.0.0.0:*) ;;
                                ::|\[::\]*) ;;
                                *) warn_addr="${warn_addr} ${x}" ;;
                        esac
                done
                if [ -n "${warn_addr}" ] ; then
                        need net
                        ewarn "You are binding an interface in ListenAddress statement in your named_config!"
                        ewarn "You must add rc_need=\"net.FOO\" to your /etc/conf.d/named"
                        ewarn "where FOO is the interface(s) providing the following address(es):"
                        ewarn "${warn_addr}"
                fi
        fi
}

checkconfig() {
        if [ ! -d /var/empty ] ; then
                mkdir -p /var/empty || return 1
        fi

        if [ ! -e "${NAMED_CONFIG}" ] ; then
                eerror "You need an ${NAMED_CONFIG} file to run named"
                eerror "There is a sample file in /usr/share/doc/openname"
                return 1
        fi

}

start() {
        checkconfig || return 1

        ebegin "Starting ${SVCNAME}"
        start-stop-daemon --start --exec "${NAMED_BINARY}" \
            -- ${NAMED_OPTS}
        eend $?
}

stop() {
        if [ "${RC_CMD}" = "restart" ] ; then
                checkconfig || return 1
        fi

        ebegin "Stopping ${SVCNAME}"
        start-stop-daemon --stop --exec "${NAMED_BINARY}" \
            --pidfile "${NAMED_PIDFILE}" --quiet
        eend $?
}
reload() {
        checkconfig || return 1
        ebegin "Reloading ${SVCNAME}"
        start-stop-daemon --signal HUP \
            --exec "${NAMED_BINARY}"
        eend $?
}