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.archive.openwrt.org/?a=commitdiff_plain;h=8db5c02f5f90ac4d15c9e7e5ef2b06c3dcde83c0;p=15.05%2Fopenwrt.git add missing /etc/functions.sh include required for saving network state (closes: #3902) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12660 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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"