diff options
author | Bill Nottingham <notting@redhat.com> | 2000-08-03 14:19:32 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-08-03 14:19:32 +0000 |
commit | 90c9c1bdb710b438fc84aea4bcad180cf9eed12f (patch) | |
tree | eb32c7ef960f9a147bf045dfd35356806d5da217 | |
parent | 8c707066217b593d2af97d30062c94a18703687c (diff) | |
download | initscripts-90c9c1bdb710b438fc84aea4bcad180cf9eed12f.tar initscripts-90c9c1bdb710b438fc84aea4bcad180cf9eed12f.tar.gz initscripts-90c9c1bdb710b438fc84aea4bcad180cf9eed12f.tar.bz2 initscripts-90c9c1bdb710b438fc84aea4bcad180cf9eed12f.tar.xz initscripts-90c9c1bdb710b438fc84aea4bcad180cf9eed12f.zip |
um, you can't have a hyphen in a shell variable
-rwxr-xr-x | sysconfig/network-scripts/ifup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup index d38ff995..fe8bd474 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -74,7 +74,7 @@ fi if [ "$SLAVE" = yes -a "$ISALIAS" = no -a "$MASTER" != "" -a \ -x /sbin/ifenslave ]; then - RFLAG="" ; [ "$RECEIVE-ONLY" = yes ] && RFLAG="-r" + RFLAG="" ; [ "$RECEIVEONLY" = yes ] && RFLAG="-r" ifconfig ${DEVICE} down echo "Enslaving $DEVICE to $MASTER" |