I am trying to use a single Fixlet to address several possible issues using the IF, THEN, ELSE command, and am experiencing some issues.
For example. I want to take a specific action of the service “FOO” has a start type of anything other than “auto” I would consider something like this"
IF (not exist service “FOO” with start type “auto”) THEN Action ELSE NoAction
Can someone give me the relevance that would allow the above relevance to equate to TRUE if the service is not net to auto?
Anytime you see “if x then true else false” you can always simplify it. How about this for the relevance test that is inside the ActionScript if statement:
q: (start type of it is not “auto”) of service whose (service name of it as string = “BESClient”) | false
A: False
q: (start type of it is not “auto”) of service whose (service name of it as string = “imaginary_service_to_show_why_martinc_added_the_pipe_plus_false”) | false