diff options
author | Bill Nottingham <notting@redhat.com> | 2004-11-09 17:07:27 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-11-09 17:07:27 +0000 |
commit | 6043ee4b7155766a6d7d56e8e7777f8efef2214d (patch) | |
tree | 4701192ca3ac6b70e5fa9b7e5c12db296c7fb254 /sysconfig | |
parent | 15b25d9263aa4f04180203785a666cac6b73c788 (diff) | |
download | initscripts-6043ee4b7155766a6d7d56e8e7777f8efef2214d.tar initscripts-6043ee4b7155766a6d7d56e8e7777f8efef2214d.tar.gz initscripts-6043ee4b7155766a6d7d56e8e7777f8efef2214d.tar.bz2 initscripts-6043ee4b7155766a6d7d56e8e7777f8efef2214d.tar.xz initscripts-6043ee4b7155766a6d7d56e8e7777f8efef2214d.zip |
fix typo (#134787, <bnocera@redhat.com>)
Diffstat (limited to 'sysconfig')
-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 4584bb3c..ce83731d 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -370,7 +370,7 @@ if [ "${TYPE}" = "Bonding" ] || ethtool -i $DEVICE 2>/dev/null| grep -q "driver if [ "$BOOTPROTO" = "dhcp" ]; then DEV=$DEVICE eval $(LANG=C fgrep "DEVICE=" $device) - ifenslave -d $DEV DEVICE + ifenslave -d $DEV $DEVICE DEVICE=$DEV fi /sbin/ifup ${device##*/} |