Created
November 11, 2009 14:05
-
-
Save anonymous/231968 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35c35,39 | |
< print Data::Dumper->Dump([$entity_view]); | |
--- | |
> my $guest=$entity_view->guest if $entity_view->guest; | |
> my $net=$guest->net if $guest->net; | |
> foreach my $nic (@{ $net }){ | |
> print $nic->macAddress."\n" if $nic->macAddress; | |
> } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment