aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2008-09-23 12:48:53 +0000
committerNicolas Thill <nico@openwrt.org>2008-09-23 12:48:53 +0000
commit8db5c02f5f90ac4d15c9e7e5ef2b06c3dcde83c0 (patch)
treeef2e676a162cd0a5217e19b00956b0308fe1e1a6
parentb6879de8281b6cbb43348d87ff7da2e1cb02c1dd (diff)
downloadupstream-8db5c02f5f90ac4d15c9e7e5ef2b06c3dcde83c0.tar.gz
upstream-8db5c02f5f90ac4d15c9e7e5ef2b06c3dcde83c0.tar.bz2
upstream-8db5c02f5f90ac4d15c9e7e5ef2b06c3dcde83c0.zip
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
-rwxr-xr-xpackage/ppp/files/etc/ppp/ip-down1
-rwxr-xr-xpackage/ppp/files/etc/ppp/ip-up1
2 files changed, 2 insertions, 0 deletions
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"