From 6cda2e7dad12356c5e1c441c53ba08b846ac8f72 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 11 Feb 2011 14:29:41 +0000 Subject: [PATCH] Correct syntax of mac entries for multi-mac scenario of vm creation git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8825 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/VMCommon.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/VMCommon.pm b/perl-xCAT/xCAT/VMCommon.pm index a107ce6ed..2b709db2f 100644 --- a/perl-xCAT/xCAT/VMCommon.pm +++ b/perl-xCAT/xCAT/VMCommon.pm @@ -122,7 +122,7 @@ sub requestMacAddresses { if (not $macdata) { $macdata = $macaddr; } else { - $macdata .= "|".$macaddr."*NOIP*"; + $macdata .= "|".$macaddr."!*NOIP*"; } push @macs,$macaddr; }