From 1bb7712ae17e9ec14eb70182ec8d026c3a8d04fa Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Wed, 16 Jun 2010 18:51:32 +0000 Subject: [PATCH] -Fix zone duplication problem in dns.pm git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@6489 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/dns.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/dns.pm b/xCAT-server/lib/xcat/plugins/dns.pm index f2fdaf140..ff6eec650 100644 --- a/xCAT-server/lib/xcat/plugins/dns.pm +++ b/xCAT-server/lib/xcat/plugins/dns.pm @@ -99,7 +99,7 @@ sub get_reverse_zone_for_entity { unshift(@zone,(shift @orig)); } $rev = join('.',@zone); - $rev .= '.IN-ADDR.ARPA'; + $rev .= '.IN-ADDR.ARPA.'; return $rev; } }