diff options
author | mh <mh@immerda.ch> | 2010-08-11 15:57:58 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-08-11 15:57:58 +0200 |
commit | 01bb8dfee9c3981994d1697fc96470798445a050 (patch) | |
tree | dcd4266d6eeb8dc48ae1b69aacea53594e6560a8 /manifests/defaults/hostgroups.pp | |
parent | 33b091b896fbb0b54ee9968c452ef2a8867893d8 (diff) | |
parent | a5d8b5b8b1f4d5afcb549e28bf1eef12169b81c7 (diff) |
Merge branch 'master' of git.puppet.immerda.ch:module-nagios
Diffstat (limited to 'manifests/defaults/hostgroups.pp')
-rw-r--r-- | manifests/defaults/hostgroups.pp | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/manifests/defaults/hostgroups.pp b/manifests/defaults/hostgroups.pp index 3a4f4d1..8715ade 100644 --- a/manifests/defaults/hostgroups.pp +++ b/manifests/defaults/hostgroups.pp @@ -1,13 +1,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'; - } - + nagios_hostgroup { + 'all': + alias => 'All Servers', + members => '*'; + 'debian-servers': + alias => 'Debian GNU/Linux Servers'; + 'centos-servers': + alias => 'CentOS GNU/Linux Servers'; + } } |