summaryrefslogtreecommitdiff
path: root/puppet/modules/nagios/manifests/defaults/hostgroups.pp
blob: 8715adeea528621d5dff85f1d8f448c623012403 (plain)
1
2
3
4
5
6
7
8
9
10
11
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';
  }
}