source: freewrt/package/bind/files/named.init@ 621d5d2

freewrt_2_0
Last change on this file since 621d5d2 was 65d016f, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

fix half of the init scripts not conforming to
our standard. thx very much ulmen!

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@1000 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100755
File size: 336 bytes
Line 
1#!/bin/sh
2
3. /etc/rc.conf
4
5case $1 in
6 autostart)
7 test x"${named:-NO}" = x"NO" && exit 0
8 exec $0 start
9 ;;
10 start)
11 if [ -f /etc/bind/named.conf ]; then
12 named -c /etc/bind/named.conf
13 fi
14 ;;
15 stop)
16 killall named
17 ;;
18 restart)
19 $0 stop
20 $0 start
21 ;;
22 *)
23 echo "usage: $0 {start | stop | restart}"
24 exit 1
25esac
26exit $?
Note: See TracBrowser for help on using the repository browser.