From 74babfcedec4961dd5dc7704cc9ce523d34eb5d8 Mon Sep 17 00:00:00 2001 From: bybai Date: Wed, 1 Mar 2017 22:13:51 -0500 Subject: [PATCH] fix issue 2572 makedns fails with a noderange error --- xCAT-server/lib/xcat/plugins/ddns.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/ddns.pm b/xCAT-server/lib/xcat/plugins/ddns.pm index 9291488b1..de6085e27 100755 --- a/xCAT-server/lib/xcat/plugins/ddns.pm +++ b/xCAT-server/lib/xcat/plugins/ddns.pm @@ -622,7 +622,7 @@ sub process_request { } else { # this host string might be a xcat group, try to test each node in the group - foreach my $host (noderange($hosts)) { + foreach my $host (xCAT::NodeRange->noderange($hosts)) { unless (xCAT::NetworkUtils->thishostisnot($host)) { $listenonifs = $dnsif; last;