diff options
author | Michael K. Johnson <johnsonm@redhat.com> | 1997-09-24 17:35:16 +0000 |
---|---|---|
committer | Michael K. Johnson <johnsonm@redhat.com> | 1997-09-24 17:35:16 +0000 |
commit | 8405bb6652658a35197cbb733e3f992c2bace2b1 (patch) | |
tree | e31971afe578ad10465642d4add54bedee00797d | |
parent | 7b25baef44780e10c743b123811c828bbd7b980a (diff) | |
download | initscripts-8405bb6652658a35197cbb733e3f992c2bace2b1.tar initscripts-8405bb6652658a35197cbb733e3f992c2bace2b1.tar.gz initscripts-8405bb6652658a35197cbb733e3f992c2bace2b1.tar.bz2 initscripts-8405bb6652658a35197cbb733e3f992c2bace2b1.tar.xz initscripts-8405bb6652658a35197cbb733e3f992c2bace2b1.zip |
CONFIG after daemon daemonizing.
-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 |