diff options
Diffstat (limited to 'sysconfig')
-rwxr-xr-x | sysconfig/network-scripts/ifup-ppp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifup-ppp b/sysconfig/network-scripts/ifup-ppp index ffea7336..3b655245 100755 --- a/sysconfig/network-scripts/ifup-ppp +++ b/sysconfig/network-scripts/ifup-ppp @@ -1,9 +1,6 @@ #!/bin/sh PATH=/sbin:/usr/sbin:/bin:/usr/bin -CONFIG=$1 -. network-functions - # ifup-post for PPP is handled through /etc/ppp/ip-up if [ "$1" != daemon ] ; then @@ -14,6 +11,8 @@ if [ "$1" != daemon ] ; then fi shift +CONFIG=$1 +. network-functions source_config if [ -z "$DISCONNECTTIMEOUT" ]; then |