From e88a6b7e10028c6c15ec31d32397ce51c4edd78b Mon Sep 17 00:00:00 2001 From: Maximilian Wilhelm Date: Wed, 24 Mar 2021 14:42:33 +0100 Subject: [PATCH] bond executor: Fix bond param regex Signed-off-by: Maximilian Wilhelm --- executor-scripts/linux/bond | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executor-scripts/linux/bond b/executor-scripts/linux/bond index 2c5dd12..8264e6e 100755 --- a/executor-scripts/linux/bond +++ b/executor-scripts/linux/bond @@ -9,7 +9,7 @@ get_bond_options() { # We only care for options of format IF_BOND_ - 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