Fix: libpe_status: Handle filtering of inactive resources.
Inactive resources aren't running on any node, so
pe__rsc_running_on_any_node_in_list was always returning false. This
means inactive resources would never get printed out even when not
filtering by nodes.
Fix pe__rsc_running_on_any_node_in_list to take inactive resources into
account. If a resource is inactive, it should still be printed if the
filtered node list is "*". This fixes things for when no filtering was
requested. If the filtered node list contains some nodes, eveything
should already be working correctly.