2 # Copyright (c) 2007-2012 Roy Marples
5 # named subscriber for resolvconf
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
10 # * Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
12 # * Redistributions in binary form must reproduce the above
13 # copyright notice, this list of conditions and the following
14 # disclaimer in the documentation and/or other materials provided
15 # with the distribution.
17 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 [ -f "@SYSCONFDIR@"/resolvconf.conf
] ||
exit 0
30 .
"@SYSCONFDIR@/resolvconf.conf" ||
exit 1
31 [ -z "$named_zones" -a -z "$named_options" ] && exit 0
32 [ -z "$RESOLVCONF" ] && eval "$(@SBINDIR@/resolvconf -v)"
36 # Platform specific kludges
37 if [ -z "$named_service" -a -z "$named_restart" -a \
38 -d "@RCDIR@" -a ! -x "@RCDIR@"/named
]
40 if [ -x "@RCDIR@"/bind9
]; then
41 # Debian and derivatives
43 elif [ -x "@RCDIR@"/rc.
bind ]; then
48 : ${named_service:=named}
49 : ${named_restart:=@RESTARTCMD ${named_service}@}
50 newoptions
="# Generated by resolvconf$NL"
51 newzones
="$newoptions"
54 for n
in $NAMESERVERS; do
57 *) forward
="$forward$NL $n;";;
60 if [ -n "$forward" ]; then
61 newoptions
="${newoptions}forward first;${NL}forwarders {$forward${NL}};$NL"
65 newzones
="${newzones}zone \"${d%%:*}\" {$NL"
66 newzones
="$newzones type forward;$NL"
67 newzones
="$newzones forward first;$NL forwarders {$NL"
69 while [ -n "$ns" ]; do
70 newzones
="$newzones ${ns%%,*};$NL"
71 [ "$ns" = "${ns#*,}" ] && break
74 newzones
="$newzones };$NL};$NL"
77 # Try to ensure that config dirs exist
78 if type config_mkdirs
>/dev
/null
2>&1; then
79 config_mkdirs
"$named_options" "$named_zones"
81 @SBINDIR@
/resolvconf
-D "$named_options" "$named_zones"
84 # No point in changing files or reloading bind if the end result has not
87 if [ -n "$named_options" ]; then
88 if [ ! -f "$named_options" ] || \
89 [ "$(cat "$named_options")" != "$(printf %s "$newoptions")" ]
91 printf %s
"$newoptions" >"$named_options"
95 if [ -n "$named_zones" ]; then
96 if [ ! -f "$named_zones" ] || \
97 [ "$(cat "$named_zones")" != "$(printf %s "$newzones")" ]
99 printf %s
"$newzones" >"$named_zones"