summaryrefslogtreecommitdiff
path: root/manifests/defaults/hostgroups.pp
blob: 3a4f4d1a4e29847e7fee4557eb441c99207e72da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class nagios::defaults::hostgroups {

    nagios_hostgroup {
        'all':
            alias   => 'All Servers',
    		members => '*';
        'debian-servers':
            alias   => 'Debian GNU/Linux Servers';
        'centos-servers':
            alias   => 'CentOS GNU/Linux Servers';
        }

}