#!/usr/local/bin/perl # list_groups.cgi # Display a list of all host groups and their members require './mon-lib.pl'; &ui_print_header(undef, $text{'groups_title'}, ""); $conf = &get_mon_config(); @groups = &find("hostgroup", $conf); print "
\n"; print "\n"; print " ", "\n"; $i = 0; foreach $g (@groups, { }) { local ($gn, @gm) = @{$g->{'values'}}; print "\n"; print "\n"; print "\n"; print "\n"; $i++; } print "
$text{'groups_group'}$text{'groups_members'}
\n"; print "
\n"; &ui_print_footer("", $text{'index_return'});