Synopsis
cfmg_listparam [-v] [-utf8] -id Software setup ID |
Functional Description
This command outputs a list of registered parameter information in XML format.
Options
Options | Description |
---|---|
-v | This option outputs the list in detailed format. |
-utf8 | This option outputs the list in UTF-8 format. |
-id | This option specifies the software setup ID to be output. |
Output Format
This command outputs all of the parameter information registered in the software setup information in the following format:
Detailed format | Simple format | Output format |
---|---|---|
Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes No Yes Yes No Yes | Yes Yes Yes Yes Yes Yes Yes No Yes Yes No Yes Yes Yes Yes Yes No Yes Yes No Yes | <?xml version="1.0" encoding="UTF-8"?> <parameterInfoList> <parameterInfo> <id>[Parameter ID]</id> <ownerOrg>[Owner (tenant)]</ownerOrg> <ownerUser>[Owner (user)]</ownerUser> <softwareSetupId>[Software setup ID]</softwareSetupId> <lcid>[Locale ID]</lcid> <name>[Parameter name]</name> <description>[Description]</description> <package>[Parameter package file name]</package> <parameters> <parameter> <key>[Parameter key]</key> <value>[Parameter value]</value> </parameter> ... </parameters> </parameterInfo> ... </parameterInfoList> |
Yes: Indicates that the information is output.
No: Indicates that the information is not output.
Notes
If parameter information registered in software setup information does not exist, information will be output in the following format:
<?xml version="1.0" encoding="UTF-8"?> <propertySets /> |
Example
C:\Users\Administrator> C:\Fujitsu\ROR\RCXCFMG\bin\cfmg_listparam -id SS00000001 <?xml version="1.0" encoding="Windows-31J"?> <parameterInfoList> <parameterInfo> <id>PM00000001</id> <ownerOrg>cfmgadm</ownerOrg> <ownerUser>cfmgadm</ownerUser> <softwareSetupId>SS00000001</softwareSetupId> <name>PARAMETERINFO_SAMPLE</name> <description>Sample settings</description> </parameterInfo> </parameterInfoList>
# /opt/FJSVcfmg/bin/cfmg_listparam -id SS00000001 <?xml version="1.0" encoding="UTF-8"?> <parameterInfoList> <parameterInfo> <id>PM00000001</id> <ownerOrg>cfmgadm</ownerOrg> <ownerUser>cfmgadm</ownerUser> <softwareSetupId>SS00000001</softwareSetupId> <name>PARAMETERINFO_SAMPLE</name> <description>Sample settings</description> </parameterInfo> </parameterInfoList>