| OLD | NEW |
| 1 node 'server4' { | 1 node 'server4' { |
| 2 include base, ssh, puppetmaster | 2 include base, ssh, puppetmaster |
| 3 | 3 |
| 4 class {'nagios::client': | 4 class {'nagios::client': |
| 5 server_address => 'monitoring.adblockplus.org' | 5 server_address => 'monitoring.adblockplus.org' |
| 6 } | 6 } |
| 7 | 7 |
| 8 class {'nagios::server': | 8 class {'nagios::server': |
| 9 vhost => 'monitoring.adblockplus.org', | 9 vhost => 'monitoring.adblockplus.org', |
| 10 htpasswd_source => 'puppet:///modules/private/nagios-htpasswd', | 10 htpasswd_source => 'puppet:///modules/private/nagios-htpasswd', |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 use => 'generic-service', | 120 use => 'generic-service', |
| 121 hostgroup_name => 'filter-servers', | 121 hostgroup_name => 'filter-servers', |
| 122 service_description => 'HTTP', | 122 service_description => 'HTTP', |
| 123 check_command => 'check_easylist_http' | 123 check_command => 'check_easylist_http' |
| 124 } | 124 } |
| 125 | 125 |
| 126 nagios_service {'bandwidth': | 126 nagios_service {'bandwidth': |
| 127 use => 'generic-service', | 127 use => 'generic-service', |
| 128 hostgroup_name => 'all', | 128 hostgroup_name => 'all', |
| 129 service_description => 'Bandwidth', | 129 service_description => 'Bandwidth', |
| 130 check_command => 'check_nrpe_1arg!check_bandwidth' | 130 check_command => 'check_nrpe_1arg!check_bandwidth', |
| 131 first_notification_delay => '15' |
| 131 } | 132 } |
| 132 } | 133 } |
| OLD | NEW |