Top
Systemwalker Software Configuration Manager Software Parameter Setting Guide for ServerView Resource Orchestrator
FUJITSU Software

10.4.1 cfmg_listparam(Displaying Parameter Information)

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.
If this option is omitted, the list is output in the simple format.

-utf8

This option outputs the list in UTF-8 format.
This option is only enabled for Windows versions.
If this option is omitted, the list is output in ISO-8859-1 format.
For Linux versions, the list is output in UTF-8 irrespective of this option.

-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

[Windows]
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>
[Linux]
# /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>