From: Nicolas Thill Date: Tue, 23 Sep 2008 12:48:53 +0000 (+0000) Subject: add missing /etc/functions.sh include required for saving network state (closes:... X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=038f8c05322d1068661639d1ddc5a6c532dc5afd;p=openwrt%2Fstaging%2Fwigyori.git add missing /etc/functions.sh include required for saving network state (closes: #3902) SVN-Revision: 12660 --- diff --git a/package/ppp/files/etc/ppp/ip-down b/package/ppp/files/etc/ppp/ip-down index 30151f426d..4c8ee639bc 100755 --- a/package/ppp/files/etc/ppp/ip-down +++ b/package/ppp/files/etc/ppp/ip-down @@ -1,4 +1,5 @@ #!/bin/sh +. /etc/functions.sh PPP_IFACE="$1" PPP_TTY="$2" PPP_SPEED="$3" diff --git a/package/ppp/files/etc/ppp/ip-up b/package/ppp/files/etc/ppp/ip-up index 30db93e10b..086efed958 100755 --- a/package/ppp/files/etc/ppp/ip-up +++ b/package/ppp/files/etc/ppp/ip-up @@ -1,4 +1,5 @@ #!/bin/sh +. /etc/functions.sh PPP_IFACE="$1" PPP_TTY="$2" PPP_SPEED="$3"