bond executor: Fix bond param regex
Signed-off-by: Maximilian Wilhelm <max@sdn.clinic>
This commit is contained in:
parent
9faa988326
commit
e88a6b7e10
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
get_bond_options() {
|
||||
# We only care for options of format IF_BOND_<OPTION_NAME>
|
||||
env | grep '^IF_BOND_[A-Z0-9_]\+$' | while IFS="=" read opt value; do
|
||||
env | grep '^IF_BOND_[A-Z0-9_]\+' | while IFS="=" read opt value; do
|
||||
# Members are handled seperately
|
||||
if [ "${opt}" = "IF_BOND_MEMBERS" ]; then
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue