Here are a couple ways to create one that contains all platforms:

resource.type.category = PLATFORM

or:

empty.resource.parent.id

If you want only Linux and Windows platforms, you could use:

resource.type.category = PLATFORM
resource.type.name.contains = in

This looks a bit silly, but it's all I can think of, since I don't think the expression language supports ORs/unions, so you can't do something like "resource.type.name.contains = Linux || resource.type.name.contains = Windows".


- Ian

On 08/19/2010 08:02 AM, Alexey Kamenchuk wrote:
Hi

How can I define a dynagroup which includes all of the platforms?

Tried these 2 conditions and many others - none of them work

resource.type.plugin = Platforms
resource.type.name = (Linux | Windows)

resource.type.plugin = Platforms
resource.type.name = Linux) | (
resource.type.name = Windows)


Regards
Alexey