Is there a way to make a relevance that uses a and/or? I want to create a fixlet to update java on AIX and to look for both the 32 and 64 bit version and update them if they are both there. If only 1 is there I want it to get updated and the other ignored.
I don’t personally work with AIX here …
But basically, you would use a structure like
(relevance32) OR (relevance64)
for the targeting Relevance to pick up any systems that matched EITHER clause. Then within the Action script portion of the Fixlet/Task …
if {relevance32}
blah for 32 bit
endif
if {relevance64}
blah for 64 bit
endif
to apply the appropriate actions for either condition.