Rule number 5 - it has no condition, so it catches every event, and sends notification.
Best regards,
Victor
Best regards,
Victor
We really need your input in this questionnaire
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
packages = $node->readAgentTable("System.InstalledProducts");
if (packages == null)
return null;
for(p : packages->rows)
{
name = p->get(0);
if (name == $ARGS[1])
return p->get(1);
}
return null;
