Updates for multiple resource lists

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2129 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
nott 2008-09-10 17:08:30 +00:00
parent ec546f9e76
commit 35c920b9ee
2 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ To remove specific NIM resource definitons use the AIX nim command.
=item B<attr=val [attr=val ...]>
Specifies one or more "attribute equals value" pairs, separated by spaces. Attr=val pairs must be specified last on the command line. These are used to specify additional or different resource names to use when creating the the xCAT osimage definition. The usage is: "<nim_resource_type>=<resource_name>". (ex. "root=myrootres")
Specifies one or more "attribute equals value" pairs, separated by spaces. Attr=val pairs must be specified last on the command line. These are used to specify additional or different resource names to use when creating the the xCAT osimage definition. The usage is: "<nim_resource_type>=<resource_name>". (ex. "root=myrootres") Note that you may specify multiple "script" and "installp_bundle" resources by using a comma seperated list. (ex. "script=ascript,bscript").
=item B<-b mksysbfile>
@ -104,9 +104,9 @@ B<mknimimage -s /dev/cd0 61image>
2) Create an osimage definition that includes some additional NIM resources.
B<mknimimage -s /dev/cd0 61image installp_bundle=mybndlres>
B<mknimimage -s /dev/cd0 61image installp_bundle=mybndlres,addswbnd>
This command will create lpp_source, spot, bosinst_data, and resolve_conf resources using the source specified by the "-s" option. The installp_bundle information will also be included in the osimage definition. The mybndlres resource must be created before using this osimage definition to install a node.
This command will create lpp_source, spot, bosinst_data, and resolve_conf resources using the source specified by the "-s" option. The installp_bundle information will also be included in the osimage definition. The mybndlres and addswbnd resources must be created before using this osimage definition to install a node.
3) Create an osimage definition that includes a mksysb image and related resources.

View File

@ -29,7 +29,7 @@ After the nimnodeset command completes you can use the lsnim command to check th
=item B<attr=val [attr=val ...]>
Specifies one or more "attribute equals value" pairs, separated by spaces. Attr=
val pairs must be specified last on the command line. These are used to specify additional values that can be passed to the underlying NIM commands, ("nim -o bos_inst ..."). See the NIM documentation for valid "nim" command line options.
val pairs must be specified last on the command line. These are used to specify additional values that can be passed to the underlying NIM commands, ("nim -o bos_inst ..."). See the NIM documentation for valid "nim" command line options. Note that you may specify multiple "script" and "installp_bundle" values by using a comma seperated list. (ex. "script=ascript,bscript").
=item B<-f |--force>
@ -86,11 +86,11 @@ B<nimnodeset aixnodes>
=back
3) Initialize an xCAT node called "node02". Include an installp_bundle resource that is not included in the osimage definition. This assumes the NIM installp_bundle resource has already been created.
3) Initialize an xCAT node called "node02". Include installp_bundle resources that are not included in the osimage definition. This assumes the NIM installp_bundle resources have already been created.
=over 5
B<nimnodeset -i 611image node02 installp_bundle=sshbundle>
B<nimnodeset -i 611image node02 installp_bundle=sshbundle,addswbundle>
=back