-Add currently unused method to find a cluster in a vCenter by name

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4271 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2009-09-30 21:14:24 +00:00
parent 4bcb300f0a
commit 8f888d7181

View File

@ -417,6 +417,23 @@ sub connecthost_callback {
}
}
sub get_clusterview {
my %args = @_;
my $clustname = $args{clustname};
my %subargs = (
view_type=>'ClusterComputeResource',
);
if ($args{properties}) {
$subargs{properties}=$args{properties};
}
foreach (@{$args{conn}->find_entity_views(%subargs)}) {
if ($_->name =~ /$clustname/) {
return $_;
last;
}
}
}
sub get_hostview {
my %args = @_;
my $host = $args{hypname};