diff options
| author | thepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-10-29 20:31:14 +0000 | 
|---|---|---|
| committer | thepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-10-29 20:31:14 +0000 | 
| commit | f45cb578c96d7262b08f0f5f45adfb86775d3e0d (patch) | |
| tree | 6c24f84efd77d67228e21cd8863a2d8f93526b4e /package/base-files/files/sbin | |
| parent | 988734b10c6deea21c4cba16081790d98c130a48 (diff) | |
remove /tmp/resolv.conf.auto when ifup -a is called so that any old dns servers no longer in the config get cleared
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13082 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/sbin')
| -rwxr-xr-x | package/base-files/files/sbin/ifdown | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/package/base-files/files/sbin/ifdown b/package/base-files/files/sbin/ifdown index 9eadad31e..883f8ec42 100755 --- a/package/base-files/files/sbin/ifdown +++ b/package/base-files/files/sbin/ifdown @@ -4,6 +4,7 @@  . /etc/functions.sh  [ $# = 0 ] && { echo "  $0 <group>"; exit; }  [ "x$1" = "x-a" ] && { +	[ -e "/tmp/resolv.conf.auto" ] && rm /tmp/resolv.conf.auto  	config_cb() {  		[ interface != "$1" -o -z "$2" ] || eval "$0 $2"  	} | 
