The command 'fcoe destroy eth1 eth2' would only destroy eth1 and silently leave eth2 around. This was caused by using the wrong variable $hba instead of $hbas.
Signed-off-by: Joe Eykholt <[email protected]> --- contrib/fcc.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/fcc.sh b/contrib/fcc.sh index a025bce..b5f397c 100755 --- a/contrib/fcc.sh +++ b/contrib/fcc.sh @@ -19,7 +19,7 @@ # # Please send comments and changes to jeykholt at cisco dot com -VERSION="fcc v1.0.12 07/21/2010" +VERSION="fcc v1.0.13 11/10/2010" fcoe_dir=/sys/module/fcoe fdir=/sys/class/fc_host @@ -489,7 +489,7 @@ case "$cmd" in exit 2 fi hba_required - repeat "fcoe_ctl destroy" $hba + repeat "fcoe_ctl destroy" $hbas ;; info) repeat hba_info $hbas _______________________________________________ devel mailing list [email protected] https://lists.open-fcoe.org/mailman/listinfo/devel
