From c01a6918f7a96f50ec19bf0b17455d1ed9fac677 Mon Sep 17 00:00:00 2001 From: leiaibj Date: Tue, 15 Jan 2013 06:04:22 +0000 Subject: [PATCH] add support for new nics table delimiter git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@14881 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/profilednodes.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/profilednodes.pm b/xCAT-server/lib/xcat/plugins/profilednodes.pm index 6c729b6ab..fd99f10d3 100644 --- a/xCAT-server/lib/xcat/plugins/profilednodes.pm +++ b/xCAT-server/lib/xcat/plugins/profilednodes.pm @@ -1297,10 +1297,10 @@ sub gen_new_hostinfo_string{ } } - my $nicips = $installnic.":".$hostinfo_dict{$item}{"ip"}; + my $!icips = $installnic."!".$hostinfo_dict{$item}{"ip"}; foreach(keys %ipshash){ if ( $_ eq $installnic ) {next;} - $nicips = "$_:$ipshash{$_},$nicips"; + $nicips = "$_!$ipshash{$_},$nicips"; } $hostinfo_dict{$item}{"nicips"} = $nicips;