From 83e243e692b3cd26ad6b404db0ca19b550db0253 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 31 Aug 2016 10:01:31 -0400 Subject: [PATCH] Fix makeconfluentcfg -d makeconfluentcfg -d erroneously would exit after only considering the first possible node. Allow it to iterate over all the confluent nodes seeking a match. --- xCAT-server/lib/xcat/plugins/confluent.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/confluent.pm b/xCAT-server/lib/xcat/plugins/confluent.pm index 3fb107c9b..85b344f95 100644 --- a/xCAT-server/lib/xcat/plugins/confluent.pm +++ b/xCAT-server/lib/xcat/plugins/confluent.pm @@ -395,8 +395,8 @@ sub donodeent { if ($cfgenthash->{$confnode}) { $confluent->delete('/nodes/' . $confnode); } - return; } + return; } my @toconfignodes = keys %{$cfgenthash}; my $ipmitab = xCAT::Table->new('ipmi', -create => 0);