diff options
author | Than Ngo <than@redhat.com> | 2001-08-10 14:56:06 +0000 |
---|---|---|
committer | Than Ngo <than@redhat.com> | 2001-08-10 14:56:06 +0000 |
commit | bb136dc06679812ea53669cd9a5885ad8d3935cb (patch) | |
tree | 056aedbec6487ccacd9ff4bc29e90e85d0e4f486 /sysconfig/network-scripts/ifup-ippp | |
parent | d84a44e9cdda7d731df5d4c95677c716b9db7dde (diff) | |
download | initscripts-bb136dc06679812ea53669cd9a5885ad8d3935cb.tar initscripts-bb136dc06679812ea53669cd9a5885ad8d3935cb.tar.gz initscripts-bb136dc06679812ea53669cd9a5885ad8d3935cb.tar.bz2 initscripts-bb136dc06679812ea53669cd9a5885ad8d3935cb.tar.xz initscripts-bb136dc06679812ea53669cd9a5885ad8d3935cb.zip |
* fix channel bundlingr6-14
Diffstat (limited to 'sysconfig/network-scripts/ifup-ippp')
-rwxr-xr-x | sysconfig/network-scripts/ifup-ippp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysconfig/network-scripts/ifup-ippp b/sysconfig/network-scripts/ifup-ippp index 32d56495..8ab1680f 100755 --- a/sysconfig/network-scripts/ifup-ippp +++ b/sysconfig/network-scripts/ifup-ippp @@ -177,7 +177,7 @@ function addprovider() options="$options /dev/$DEVICE" # set channel bundling - if [ "$BUNDLING" = "yes" -a -n "$SLAVE_DEVICE" ]; then + if [ "$BUNDLING" = "yes" -o "$BUNDLING" = "on" ] && [ -n "$SLAVE_DEVICE" ]; then [ -z "$SLAVE_MSN" ] && SLAVE_MSN="$MSN" [ -z "$SLAVE_PHONE_OUT" ] && SLAVE_PHONE_OUT="$PHONE_OUT" [ -z "$SLAVE_PHONE_IN" ] && SLAVE_PHONE_IN="$PHONE_IN" @@ -296,7 +296,7 @@ function addprovider() ipppd $options # start ibod daemon - [ "$BUNDLING" = "yes" -a -n "$SLAVE_DEVICE" ] && start_ibod $DEVICE + [ "$BUNDLING" = "yes" -o "$BUNDLING" = "on" ] && [ -n "$SLAVE_DEVICE" ] && start_ibod $DEVICE fi # set default gateway for dial on demand |