AgentExecuteCommand(node, commandName, …) ⇒ Boolean
-
Execute agent command (action) on given node. Optional arguments starting from 3rd are passed as command arguments to the agent.
Note
|
Prior to v. 4.2 this function was named AgentExecuteAction |
node |
[class-node] object instance (e.g. |
commandName |
Name of the command to be executed |
… |
Optional arguments for command |
Return
Boolean indicator of success
Example
>>> AgentExecuteCommand($node, "System.Restart"); true >>> AgentExecuteCommand($node, "Custom.RestartService", "jetty9"); true >>> AgentExecuteCommand($node, "nonexisting action"); false