Browse Source

check ifenslave instead of brctl in parse-bond.sh

This is obviously wrong, ifenslave instead of brctl is needed for bonding.

Cc: Harald Hoyer <harald@redhat.com>
Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com>
master
WANG Cong 13 years ago committed by Harald Hoyer
parent
commit
ffc5bf686d
  1. 2
      modules.d/40network/parse-bond.sh

2
modules.d/40network/parse-bond.sh

@ -18,7 +18,7 @@ if getarg bond= >/dev/null ; then @@ -18,7 +18,7 @@ if getarg bond= >/dev/null ; then
if [ -z "$netroot" ] ; then
die "No netboot configured, bond is invalid"
fi
command -v brctl >/dev/null 2>&1 || die "No 'brctl' installed"
command -v ifenslave >/dev/null 2>&1 || die "No 'ifenslave' installed"
fi

# We translate list of slaves to space-separated here to mwke it easier to loop over them in ifup

Loading…
Cancel
Save