File: spong.groups

package info (click to toggle)
spong 2.7.7-19
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,880 kB
  • ctags: 1,224
  • sloc: perl: 6,640; sh: 2,247; makefile: 237
file content (30 lines) | stat: -rwxr-xr-x 925 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# spong.groups - Defines groups for grouping of hosts
#
# $Id: spong.groups,v 1.4 2000/10/16 13:58:48 sljohnson Exp $



%GROUPS = (
 'all' =>   { name    => 'All Systems',
	      summary => "This groups contains all hosts monitored by spong" },

# Note: You do not have to add hosts into the 'all' group. All hosts in
#       spong.hosts are automatically a member of the group.

 'unix-all'  => { name    => "Unix - All",
		  summary => "All Unix Systems and Servers",
 		  members => [ 'big.server.example.com',
			       'web1.example.com',
			       'web2.example.com',
			       'web3.example.com' ] },

 'other'     => { name    => "Other Systems",
		  summary => "Other monitored systems (large systems)",
		  members => [ 'vax1.example.com',
			       'as400.example.com' ] },

 'lan'       => { name    => "Lan Systems",
		  summary => "Novell and PC based systems",
		  members => [ 'some.pc.example.com' ] },

);