add the possibility to use a script, idea by fulup
[openwrt.git] / package / base-files / default / usr / share / udhcpc / default.script
index 6c64aa3..0c08985 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 # udhcpc script edited by Tim Riker <Tim@Rikers.org>
-# (slightly modified for openwrt)
+# (slightly modified for OpenWrt)
 
 [ -z "$1" ] && echo "Error: should be run by udhcpc" && exit 1
 
@@ -32,6 +32,10 @@ case "$1" in
                 for i in $dns ; do
                         echo adding dns $i
                         echo nameserver $i >> $RESOLV_CONF
+
+               # user rules
+               [ -f /etc/udhcpc.user ] && . /etc/udhcpc.user
+
                 done
                 ;;
 esac
This page took 0.020685 seconds and 4 git commands to generate.