I’ve combed through the fixlet guide but I haven’t been able to find an answer for this.
I intend to change a bunch of properties based on a hostname. Namely, I intend to add their RILO IP addresses with documentation that we have available.
To do this, I was trying to do something similar to this:
if hostname is "Computer1" setting "RiloIP"="192%2e168%2e2%2e111" for client
elseif if hostname is "Computer2" setting "RiloIP"="192%2e168%2e2%2e112" for client
endif
I will be adding those IP addresses from a sheet I have and I’d rather run this through a fixlet instead of touching them one at at time.
If I do this by itself, I get “Unimplemented command ‘setting’.”
setting "RiloIP"="192%2e168%2e2%2e111" on "Fri, 05 Oct 2012 19:56:52 +0000" for client
Unsure. I get the following error in the fixlet debugger:
Error Type: runtime error
Description: Unimplemented command ‘setting’.
Line: 1
Sorry, I did not understand from your original post that you were getting this error in the Fixlet Debugger.
But yes, you
will
get this error in the Fixlet Debugger. For security reasons (i.e., we don’t want end users to be able to change the client’s settings), the Action Tab in Fixlet Debugger runs under the user’s security context and will not interact with the local client evaluator. So the ‘setting’ command is not implemented.