is_machine_list_for_group

one of the documented procedures in this installation of the ACS
Usage:
is_machine_list_for_group   db   group_id
What it does:
Returns a list of machine_id/hostname pairs belonging to a group
Defined in: /web/philip/tcl/ischecker-defs.tcl

Source code:


    return [database_to_tcl_list_list $db "select is_machines.machine_id, 
hostname from is_group_machine_map, is_machines
where is_machines.machine_id = is_group_machine_map.machine_id
and is_group_machine_map.group_id = $group_id"]


philg@mit.edu