From: Waldemar Brodkorb Date: Tue, 13 Sep 2005 10:59:54 +0000 (+0000) Subject: add the possibility to use a script, idea by fulup X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=720722f008b48f7cc8165219856f158ed2fcbafa;p=librecmc%2Flibrecmc.git add the possibility to use a script, idea by fulup SVN-Revision: 1913 --- diff --git a/openwrt/package/base-files/default/usr/share/udhcpc/default.script b/openwrt/package/base-files/default/usr/share/udhcpc/default.script index 6c64aa3d4a..0c08985e71 100755 --- a/openwrt/package/base-files/default/usr/share/udhcpc/default.script +++ b/openwrt/package/base-files/default/usr/share/udhcpc/default.script @@ -1,6 +1,6 @@ #!/bin/sh # udhcpc script edited by Tim Riker -# (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