-Avoid confusing perl in rmblade about '@' character in noderange

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5397 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2010-03-05 22:58:11 +00:00
parent 666713d204
commit 1d9b8388e0

View File

@ -77,7 +77,8 @@ print "ip: $ip\n";
print "host: $mm\n";
print "slot: $slot\n";
# we now have slot and amm. Need to now get which blade this is:
my $node = `nodels mp.id==$slot@mp.mpa==$mm`;
my $nlscmd = "nodels mp.id==$slot".'@'."mp.mpa==$mm"
my $node = `$nlscmd`;
chomp($node);
print "node: $node\n";
if($node ne ''){