Hostsvc/rsrc/pools get

From VI-Toolkit
Revision as of 01:20, 6 January 2009 by Lamw (talk | contribs)
Jump to navigation Jump to search

vimsh hostsvc/rsrc/pools_get

Usage: pools_get poolId

Get the list of pools nested within the specified pool.

Example

To extract the poolId, you actually have to look in the following file:

 /etc/vmware/hostd/pools.xml

Here is a quick snippet of code to extract the poolId based on a VM Name:

 cat /etc/vmware/hostd/pools.xml | grep "RESOURCE_POOL_NAME" -A1 | grep "<objID>" | sed 's/<objID>//;s/<\/objID>//g' | sed -e 's/^blank:*//;s/blank:*$//'