From: Ted Lemon Date: Tue, 16 Sep 1997 18:10:50 +0000 (+0000) Subject: Chmod resolv.conf in case umask is bogus X-Git-Tag: NetBSD_1_3_Alpha~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f404b59e4f936974b1097059dfc8c0b9c1bf2fe0;p=thirdparty%2Fdhcp.git Chmod resolv.conf in case umask is bogus --- diff --git a/client/scripts/netbsd b/client/scripts/netbsd index 819bfd241..e5d3df2cb 100755 --- a/client/scripts/netbsd +++ b/client/scripts/netbsd @@ -68,6 +68,7 @@ if [ x$reason = xBOUND ] || [ x$reason = xRENEW ] || \ route add $alias_ip_address 127.0.0.1 fi echo search $new_domain_name >/etc/resolv.conf + chmod 644 /etc/resolv.conf for nameserver in $new_domain_name_servers; do echo nameserver $nameserver >>/etc/resolv.conf done @@ -115,6 +116,7 @@ if [ x$reason = xTIMEOUT ]; then route add default $router >/dev/null 2>&1 done echo search $new_domain_name >/etc/resolv.conf.std + chmod 644 /etc/resolv.conf.std for nameserver in $new_domain_name_servers; do echo nameserver $nameserver >>/etc/resolv.conf.std done