@@ -11,13 +11,13 @@ A tool to manage managers in a service.
1111```
1212usage: rf_manager_config.py [-h] --user USER --password PASSWORD --rhost RHOST
1313 [--manager MANAGER] [--debug]
14- {info,reset,getnet,setnet,resettodefaults,settime,getprotocol,setprotocol}
14+ {info,reset,getnet,setnet,resettodefaults,settime,getprotocol,setprotocol,setserviceid }
1515 ...
1616
1717A tool to manage managers in a service
1818
1919positional arguments:
20- {info,reset,getnet,setnet,resettodefaults,settime,getprotocol,setprotocol}
20+ {info,reset,getnet,setnet,resettodefaults,settime,getprotocol,setprotocol,setserviceid }
2121 info Displays information about a manager
2222 reset Resets a manager
2323 getnet Displays information about an Ethernet interface
@@ -26,6 +26,7 @@ positional arguments:
2626 settime Sets the date-time on a manager
2727 getprotocol Displays network protocol information about a manager
2828 setprotocol Configures network protocol settings on a manager
29+ setserviceid Sets the service identification for a manager
2930
3031required arguments:
3132 --user USER, -u USER The user name for authentication
@@ -342,3 +343,27 @@ Example:
342343$ rf_manager_config.py -u root -p root -r https://192.168.1.100 setprotocol -prot IPMI -dis
343344Configuring IPMI...
344345```
346+
347+ ### Set Service Identification
348+
349+ Sets the service identification for a manager
350+
351+ ```
352+ usage: rf_manager_config.py setserviceid [-h] --id ID
353+
354+ options:
355+ -h, --help show this help message and exit
356+ --id ID, -i ID The service identification to set
357+ ```
358+
359+ The tool will log into the service specified by the * rhost* argument using the credentials provided by the * user* and * password* arguments.
360+ It will then locate the manager specified by the * manager* argument, and applies the * id* value to the manager instance.
361+
362+ * If * manager* is not specified, and if the service has exactly one manager, it will perform the operation on the one manager.
363+
364+ Example:
365+
366+ ```
367+ $ rf_manager_config.py -u root -p root -r https://192.168.1.100 setserviceid -i 'New Identifier'
368+ Setting the identification to 'New Identifier'...
369+ ```
0 commit comments