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.lede-project.org./?a=commitdiff_plain;h=3356e35d193ecd853ca5e295da2288ebf4c3466c;p=openwrt%2Fsvn-archive%2Farchive.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"