2000-10-08 19:20:36 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 1999 Matt Dillon
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
2002-07-18 05:00:17 +00:00
|
|
|
# SUCH DAMAGE.
|
2000-10-08 19:20:36 +00:00
|
|
|
#
|
1999-09-13 17:09:08 +00:00
|
|
|
# $FreeBSD$
|
1999-09-13 15:44:20 +00:00
|
|
|
#
|
1999-02-09 17:17:18 +00:00
|
|
|
|
2004-03-23 23:22:35 +00:00
|
|
|
# PROVIDE: resolv
|
2012-09-11 05:04:59 +00:00
|
|
|
# REQUIRE: netif FILESYSTEMS
|
2004-10-07 13:55:26 +00:00
|
|
|
# KEYWORD: nojail
|
2001-04-25 05:46:40 +00:00
|
|
|
|
2004-03-23 23:22:35 +00:00
|
|
|
. /etc/rc.subr
|
2001-05-09 15:13:51 +00:00
|
|
|
|
2004-03-23 23:22:35 +00:00
|
|
|
name="resolv"
|
2007-12-08 23:00:28 +00:00
|
|
|
stop_cmd=':'
|
2001-05-09 15:13:51 +00:00
|
|
|
|
2004-03-23 23:22:35 +00:00
|
|
|
load_rc_config $name
|
2002-12-22 22:18:41 +00:00
|
|
|
|
|
|
|
# if the info is available via dhcp/kenv
|
|
|
|
# build the resolv.conf
|
|
|
|
#
|
2011-09-19 15:56:50 +00:00
|
|
|
if [ -n "`/bin/kenv dhcp.domain-name-servers 2> /dev/null`" ]; then
|
|
|
|
interface="`/bin/kenv boot.netif.name`"
|
|
|
|
(
|
2004-03-23 23:22:35 +00:00
|
|
|
if [ -n "`/bin/kenv dhcp.domain-name 2> /dev/null`" ]; then
|
2011-09-19 15:56:50 +00:00
|
|
|
echo domain `/bin/kenv dhcp.domain-name`
|
2004-03-23 23:22:35 +00:00
|
|
|
fi
|
2002-12-22 22:18:41 +00:00
|
|
|
|
2007-06-02 05:24:39 +00:00
|
|
|
set -- `/bin/kenv dhcp.domain-name-servers`
|
|
|
|
for ns in `IFS=','; echo $*`; do
|
2011-09-19 15:56:50 +00:00
|
|
|
echo nameserver $ns
|
2007-06-02 05:24:39 +00:00
|
|
|
done
|
2011-09-19 15:56:50 +00:00
|
|
|
) | /sbin/resolvconf -a ${interface}:dhcp4
|
2002-12-22 22:18:41 +00:00
|
|
|
fi
|
|
|
|
|