aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifup-ppp
diff options
context:
space:
mode:
authorMichael K. Johnson <johnsonm@redhat.com>1999-09-06 18:39:44 +0000
committerMichael K. Johnson <johnsonm@redhat.com>1999-09-06 18:39:44 +0000
commit5ae520ecf238d6c5d1db515bb3217501f93c8a13 (patch)
treeace07ae0180e057c6a7a482682ef632b4d4e2c14 /sysconfig/network-scripts/ifup-ppp
parentc87eb6700a2bec6a36e72d5cbad6590551ffa3bb (diff)
downloadinitscripts-5ae520ecf238d6c5d1db515bb3217501f93c8a13.tar
initscripts-5ae520ecf238d6c5d1db515bb3217501f93c8a13.tar.gz
initscripts-5ae520ecf238d6c5d1db515bb3217501f93c8a13.tar.bz2
initscripts-5ae520ecf238d6c5d1db515bb3217501f93c8a13.tar.xz
initscripts-5ae520ecf238d6c5d1db515bb3217501f93c8a13.zip
DEFROUTE defaults on; PEERDNS documented and defaults on
Diffstat (limited to 'sysconfig/network-scripts/ifup-ppp')
-rwxr-xr-xsysconfig/network-scripts/ifup-ppp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifup-ppp b/sysconfig/network-scripts/ifup-ppp
index 677d84e8..3fd810f7 100755
--- a/sysconfig/network-scripts/ifup-ppp
+++ b/sysconfig/network-scripts/ifup-ppp
@@ -54,10 +54,10 @@ if [ "${ESCAPECHARS}" = yes ] ; then
elif [ "${ESCAPECHARS}" = no ] ; then
opts="$opts asyncmap 00000000"
fi
-if [ "${DEFROUTE}" = yes ] ; then
+if [ "${DEFROUTE}" != no ] ; then
opts="$opts defaultroute"
fi
-if [ "${PEERDNS}" = yes ] ; then
+if [ "${PEERDNS}" != no ] ; then
opts="$opts usepeerdns"
fi
if [ -n "${MRU}" ] ; then