Changeset 403
- Timestamp:
- 05/29/07 17:02:41 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/kindlund-filesystem/lib/HoneyClient/Manager.pm
r402 r403 561 561 $vmMAC = $som->result(); 562 562 563 564 563 # Figure out when the Agent on the VM is alive and well. 565 564 $ret = undef; … … 574 573 $vmIP = $som->result(); 575 574 576 if (defined($vmIP)) { 575 print "Calling getNameVM()...\n"; 576 $som = $stubVM->getNameVM(config => $vmCloneConfig); 577 print "Result: " . $som->result() . "\n"; 578 $vmName = $som->result(); 579 580 if (defined($vmIP) && defined($vmName)) { 577 581 if (!$logMsgPrinted) { 578 582 $LOG->info("Created clone VM (" . $vmName . ") using IP (" . $vmIP . ") and MAC (" . $vmMAC . ")."); … … 595 599 print Dumper($ret); 596 600 597 print "Calling getNameVM()...\n";598 $som = $stubVM->getNameVM(config => $vmCloneConfig);599 print "Result: " . $som->result() . "\n";600 $vmName = $som->result();601 601 }; 602 602 # Clear returned state, if any fault occurs.
