cloud-mu 3.6.10 → 3.6.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (171) hide show
  1. checksums.yaml +4 -4
  2. data/Berksfile +2 -3
  3. data/Berksfile.lock +11 -14
  4. data/bin/mu-aws-setup +16 -4
  5. data/bin/mu-configure +2 -1
  6. data/cloud-mu.gemspec +2 -2
  7. data/cookbooks/mu-firewall/Berksfile +1 -1
  8. data/cookbooks/mu-firewall/attributes/default.rb +2 -2
  9. data/cookbooks/mu-firewall/metadata.rb +3 -3
  10. data/cookbooks/mu-firewall/recipes/default.rb +11 -2
  11. data/cookbooks/mu-master/Berksfile +1 -1
  12. data/cookbooks/mu-master/attributes/default.rb +14 -1
  13. data/cookbooks/mu-master/files/default/389ds-perl/ASDialogs.pm +173 -0
  14. data/cookbooks/mu-master/files/default/389ds-perl/AdminMigration.pm +569 -0
  15. data/cookbooks/mu-master/files/default/389ds-perl/AdminServer.pm +952 -0
  16. data/cookbooks/mu-master/files/default/389ds-perl/AdminUtil.pm +983 -0
  17. data/cookbooks/mu-master/files/default/389ds-perl/ConfigDSDialogs.pm +449 -0
  18. data/cookbooks/mu-master/files/default/389ds-perl/DSCreate.pm +1551 -0
  19. data/cookbooks/mu-master/files/default/389ds-perl/DSDialogs.pm +233 -0
  20. data/cookbooks/mu-master/files/default/389ds-perl/DSMigration.pm +1175 -0
  21. data/cookbooks/mu-master/files/default/389ds-perl/DSUpdate.pm +534 -0
  22. data/cookbooks/mu-master/files/default/389ds-perl/DSUpdateDialogs.pm +152 -0
  23. data/cookbooks/mu-master/files/default/389ds-perl/DSUtil.pm +1710 -0
  24. data/cookbooks/mu-master/files/default/389ds-perl/Dialog.pm +249 -0
  25. data/cookbooks/mu-master/files/default/389ds-perl/DialogManager.pm +212 -0
  26. data/cookbooks/mu-master/files/default/389ds-perl/FileConn.pm +461 -0
  27. data/cookbooks/mu-master/files/default/389ds-perl/Inf.pm +268 -0
  28. data/cookbooks/mu-master/files/default/389ds-perl/Migration.pm +327 -0
  29. data/cookbooks/mu-master/files/default/389ds-perl/RegDSDialogs.pm +94 -0
  30. data/cookbooks/mu-master/files/default/389ds-perl/Resource.pm +137 -0
  31. data/cookbooks/mu-master/files/default/389ds-perl/Setup.pm +240 -0
  32. data/cookbooks/mu-master/files/default/389ds-perl/SetupDialogs.pm +243 -0
  33. data/cookbooks/mu-master/files/default/389ds-perl/SetupLog.pm +82 -0
  34. data/cookbooks/mu-master/files/default/setCertName.ldif +4 -0
  35. data/cookbooks/mu-master/libraries/mu.rb +2 -2
  36. data/cookbooks/mu-master/metadata.rb +1 -1
  37. data/cookbooks/mu-master/recipes/389ds.rb +71 -32
  38. data/cookbooks/mu-master/recipes/basepackages.rb +5 -0
  39. data/cookbooks/mu-master/recipes/default.rb +16 -5
  40. data/cookbooks/mu-master/recipes/init.rb +36 -3
  41. data/cookbooks/mu-master/recipes/ssl-certs.rb +6 -0
  42. data/cookbooks/mu-master/recipes/sssd.rb +85 -62
  43. data/cookbooks/mu-master/recipes/update_nagios_only.rb +7 -1
  44. data/cookbooks/mu-master/templates/default/389-directory-setup.inf.erb +11 -26
  45. data/cookbooks/mu-master/templates/default/sssd.conf.erb +18 -8
  46. data/cookbooks/mu-tools/files/default/Mu_CA.pem +33 -0
  47. data/cookbooks/mu-tools/metadata.rb +0 -1
  48. data/cookbooks/mu-tools/recipes/set_local_fw.rb +7 -1
  49. data/cookbooks/mu-tools/templates/amazon/sshd_config.erb +5 -1
  50. data/cookbooks/nagios/CHANGELOG.md +679 -0
  51. data/cookbooks/nagios/LICENSE +201 -0
  52. data/cookbooks/nagios/README.md +340 -0
  53. data/cookbooks/nagios/attributes/config.rb +163 -0
  54. data/cookbooks/nagios/attributes/default.rb +204 -0
  55. data/cookbooks/nagios/libraries/base.rb +311 -0
  56. data/cookbooks/nagios/libraries/command.rb +68 -0
  57. data/cookbooks/nagios/libraries/contact.rb +229 -0
  58. data/cookbooks/nagios/libraries/contactgroup.rb +111 -0
  59. data/cookbooks/{firewall/recipes/disable_firewall.rb → nagios/libraries/custom_option.rb} +20 -7
  60. data/cookbooks/nagios/libraries/data_bag_helper.rb +23 -0
  61. data/cookbooks/nagios/libraries/default.rb +90 -0
  62. data/cookbooks/nagios/libraries/helpers.rb +229 -0
  63. data/cookbooks/nagios/libraries/host.rb +410 -0
  64. data/cookbooks/nagios/libraries/hostdependency.rb +178 -0
  65. data/cookbooks/nagios/libraries/hostescalation.rb +170 -0
  66. data/cookbooks/nagios/libraries/hostgroup.rb +117 -0
  67. data/cookbooks/nagios/libraries/nagios.rb +277 -0
  68. data/cookbooks/nagios/libraries/resource.rb +59 -0
  69. data/cookbooks/nagios/libraries/service.rb +449 -0
  70. data/cookbooks/nagios/libraries/servicedependency.rb +213 -0
  71. data/cookbooks/nagios/libraries/serviceescalation.rb +193 -0
  72. data/cookbooks/nagios/libraries/servicegroup.rb +142 -0
  73. data/cookbooks/nagios/libraries/timeperiod.rb +159 -0
  74. data/cookbooks/nagios/libraries/users_helper.rb +54 -0
  75. data/cookbooks/nagios/metadata.json +44 -0
  76. data/cookbooks/nagios/metadata.rb +22 -0
  77. data/cookbooks/nagios/recipes/_load_databag_config.rb +153 -0
  78. data/cookbooks/nagios/recipes/_load_default_config.rb +241 -0
  79. data/cookbooks/nagios/recipes/apache.rb +114 -0
  80. data/cookbooks/nagios/recipes/default.rb +41 -0
  81. data/cookbooks/nagios/recipes/nginx.rb +114 -0
  82. data/cookbooks/nagios/recipes/pagerduty.rb +95 -0
  83. data/cookbooks/nagios/recipes/server.rb +182 -0
  84. data/cookbooks/nagios/recipes/server_package.rb +85 -0
  85. data/cookbooks/nagios/recipes/server_source.rb +137 -0
  86. data/cookbooks/nagios/resources/command.rb +34 -0
  87. data/cookbooks/nagios/resources/conf.rb +52 -0
  88. data/cookbooks/nagios/resources/contact.rb +34 -0
  89. data/cookbooks/nagios/resources/contactgroup.rb +35 -0
  90. data/cookbooks/nagios/resources/host.rb +35 -0
  91. data/cookbooks/nagios/resources/hostdependency.rb +35 -0
  92. data/cookbooks/nagios/resources/hostescalation.rb +36 -0
  93. data/cookbooks/nagios/resources/hostgroup.rb +35 -0
  94. data/cookbooks/nagios/resources/resource.rb +34 -0
  95. data/cookbooks/nagios/resources/service.rb +35 -0
  96. data/cookbooks/nagios/resources/servicedependency.rb +35 -0
  97. data/cookbooks/nagios/resources/serviceescalation.rb +35 -0
  98. data/cookbooks/nagios/resources/servicegroup.rb +35 -0
  99. data/cookbooks/nagios/resources/timeperiod.rb +35 -0
  100. data/cookbooks/nagios/templates/apache2.conf.erb +102 -0
  101. data/cookbooks/nagios/templates/cgi.cfg.erb +266 -0
  102. data/cookbooks/nagios/templates/commands.cfg.erb +13 -0
  103. data/cookbooks/nagios/templates/contacts.cfg.erb +37 -0
  104. data/cookbooks/nagios/templates/hostgroups.cfg.erb +25 -0
  105. data/cookbooks/nagios/templates/hosts.cfg.erb +15 -0
  106. data/cookbooks/nagios/templates/htpasswd.users.erb +6 -0
  107. data/cookbooks/nagios/templates/nagios.cfg.erb +22 -0
  108. data/cookbooks/nagios/templates/nginx.conf.erb +80 -0
  109. data/cookbooks/nagios/templates/pagerduty.cgi.erb +185 -0
  110. data/cookbooks/nagios/templates/resource.cfg.erb +27 -0
  111. data/cookbooks/nagios/templates/servicedependencies.cfg.erb +15 -0
  112. data/cookbooks/nagios/templates/servicegroups.cfg.erb +14 -0
  113. data/cookbooks/nagios/templates/services.cfg.erb +14 -0
  114. data/cookbooks/nagios/templates/spawn-fcgi.erb +10 -0
  115. data/cookbooks/nagios/templates/templates.cfg.erb +31 -0
  116. data/cookbooks/nagios/templates/timeperiods.cfg.erb +13 -0
  117. data/extras/platform_berksfile_base +3 -3
  118. data/extras/python_rpm/build.sh +4 -4
  119. data/extras/python_rpm/muthon.spec +2 -4
  120. data/extras/vault_tools/export_vaults.sh +11 -1
  121. data/install/installer +1 -1
  122. data/modules/mu/kittens.rb +27523 -0
  123. data/modules/mu/master/ldap.rb +48 -31
  124. data/modules/mu/master.rb +69 -0
  125. data/modules/mu/mu.yaml.rb +351 -0
  126. data/modules/mu/providers/aws/firewall_rule.rb +3 -1
  127. data/modules/mu/providers/aws.rb +11 -5
  128. data/modules/mu.rb +5 -4
  129. metadata +99 -48
  130. data/cookbooks/firewall/CHANGELOG.md +0 -488
  131. data/cookbooks/firewall/LICENSE +0 -202
  132. data/cookbooks/firewall/README.md +0 -366
  133. data/cookbooks/firewall/TODO.md +0 -6
  134. data/cookbooks/firewall/attributes/default.rb +0 -5
  135. data/cookbooks/firewall/attributes/firewalld.rb +0 -8
  136. data/cookbooks/firewall/attributes/iptables.rb +0 -17
  137. data/cookbooks/firewall/attributes/ufw.rb +0 -12
  138. data/cookbooks/firewall/attributes/windows.rb +0 -8
  139. data/cookbooks/firewall/libraries/helpers.rb +0 -105
  140. data/cookbooks/firewall/libraries/helpers_firewalld.rb +0 -116
  141. data/cookbooks/firewall/libraries/helpers_firewalld_dbus.rb +0 -72
  142. data/cookbooks/firewall/libraries/helpers_iptables.rb +0 -112
  143. data/cookbooks/firewall/libraries/helpers_nftables.rb +0 -170
  144. data/cookbooks/firewall/libraries/helpers_ufw.rb +0 -142
  145. data/cookbooks/firewall/libraries/helpers_windows.rb +0 -129
  146. data/cookbooks/firewall/libraries/provider_firewall_firewalld.rb +0 -179
  147. data/cookbooks/firewall/libraries/provider_firewall_iptables.rb +0 -171
  148. data/cookbooks/firewall/libraries/provider_firewall_iptables_ubuntu.rb +0 -200
  149. data/cookbooks/firewall/libraries/provider_firewall_iptables_ubuntu1404.rb +0 -200
  150. data/cookbooks/firewall/libraries/provider_firewall_rule.rb +0 -34
  151. data/cookbooks/firewall/libraries/provider_firewall_ufw.rb +0 -138
  152. data/cookbooks/firewall/libraries/provider_firewall_windows.rb +0 -126
  153. data/cookbooks/firewall/libraries/resource_firewall.rb +0 -26
  154. data/cookbooks/firewall/libraries/resource_firewall_rule.rb +0 -52
  155. data/cookbooks/firewall/metadata.json +0 -40
  156. data/cookbooks/firewall/metadata.rb +0 -15
  157. data/cookbooks/firewall/recipes/default.rb +0 -76
  158. data/cookbooks/firewall/recipes/firewalld.rb +0 -87
  159. data/cookbooks/firewall/resources/firewalld.rb +0 -28
  160. data/cookbooks/firewall/resources/firewalld_config.rb +0 -39
  161. data/cookbooks/firewall/resources/firewalld_helpers.rb +0 -106
  162. data/cookbooks/firewall/resources/firewalld_icmptype.rb +0 -88
  163. data/cookbooks/firewall/resources/firewalld_ipset.rb +0 -104
  164. data/cookbooks/firewall/resources/firewalld_policy.rb +0 -115
  165. data/cookbooks/firewall/resources/firewalld_service.rb +0 -98
  166. data/cookbooks/firewall/resources/firewalld_zone.rb +0 -118
  167. data/cookbooks/firewall/resources/nftables.rb +0 -71
  168. data/cookbooks/firewall/resources/nftables_rule.rb +0 -113
  169. data/cookbooks/firewall/templates/default/ufw/default.erb +0 -13
  170. /data/cookbooks/{firewall → nagios}/chefignore +0 -0
  171. /data/cookbooks/{firewall → nagios}/renovate.json +0 -0
@@ -0,0 +1,679 @@
1
+ # nagios Cookbook CHANGELOG
2
+
3
+ This file is used to list changes made in each version of the nagios cookbook.
4
+
5
+ ## 12.1.2 - *2024-12-05*
6
+
7
+ ## 12.1.1 - *2024-11-18*
8
+
9
+ Standardise files with files in sous-chefs/repo-management
10
+
11
+ Standardise files with files in sous-chefs/repo-management
12
+
13
+ ## 12.1.0 - *2024-07-30*
14
+
15
+ Standardise files with files in sous-chefs/repo-management
16
+
17
+ - Add support for el9 based systems
18
+ - Centos stream 8 is EOL, switched to Centos stream 9
19
+
20
+ ## 12.0.0 - *2024-07-02*
21
+
22
+ - Standardise files with files in sous-chefs/repo-management
23
+ - Update cookbook to use newer resource driven php cookbook
24
+ - Remove EOL platforms and other platform updates
25
+ - Add initial support for Ubuntu 24.04 (requires apache2 cookbook updates)
26
+
27
+ ## 11.3.2 - *2024-05-02*
28
+
29
+ ## 11.3.1 - *2024-05-02*
30
+
31
+ ## 11.3.0 - *2024-05-01*
32
+
33
+ ## 11.2.9 - *2024-04-29*
34
+
35
+ - Add FollowSymLinks option to cgi-bin directory on Apache. This prevents running into AH00670 errors if a Rewrite rule
36
+ is used elsewhere in an apache configuration globally.
37
+
38
+ ## 11.2.8 - *2024-04-29*
39
+
40
+ ## 11.2.7 - *2024-04-29*
41
+
42
+ ## 11.2.6 - *2023-12-21*
43
+
44
+ ## 11.2.5 - *2023-10-31*
45
+
46
+ ## 11.2.4 - *2023-09-28*
47
+
48
+ ## 11.2.3 - *2023-09-04*
49
+
50
+ ## 11.2.2 - *2023-07-10*
51
+
52
+ ## 11.2.1 - *2023-05-17*
53
+
54
+ ## 11.2.0 - *2023-04-25*
55
+
56
+ - Update to support apache2_service resource
57
+ - Install packages needed to run LDAP logins
58
+
59
+ ## 11.1.12 - *2023-04-18*
60
+
61
+ - Standardise files with files in sous-chefs/repo-management
62
+
63
+ ## 11.1.11 - *2023-04-05*
64
+
65
+ - Fix typos on oracle, redhat and centos
66
+
67
+ ## 11.1.10 - *2023-04-04*
68
+
69
+ - Update lint-unit-workflow
70
+
71
+ ## 11.1.9 - *2023-04-01*
72
+
73
+ - Standardise files with files in sous-chefs/repo-management
74
+
75
+ ## 11.1.8 - *2023-04-01*
76
+
77
+ - Standardise files with files in sous-chefs/repo-management
78
+
79
+ ## 11.1.7 - *2023-03-20*
80
+
81
+ - Standardise files with files in sous-chefs/repo-management
82
+
83
+ ## 11.1.6 - *2023-03-13*
84
+
85
+ - Standardise files with files in sous-chefs/repo-management
86
+
87
+ ## 11.1.5 - *2023-03-13*
88
+
89
+ - Standardise files with files in sous-chefs/repo-management
90
+
91
+ ## 11.1.4 - *2023-02-27*
92
+
93
+ - Standardise files with files in sous-chefs/repo-management
94
+
95
+ ## 11.1.3 - *2023-02-16*
96
+
97
+ - Standardise files with files in sous-chefs/repo-management
98
+
99
+ ## 11.1.2 - *2023-02-14*
100
+
101
+ - Standardise files with files in sous-chefs/repo-management
102
+
103
+ ## 11.1.1 - *2022-12-15*
104
+
105
+ - Standardise files with files in sous-chefs/repo-management
106
+
107
+ ## 11.1.0 - *2022-08-10*
108
+
109
+ - Remove 5 second munging of command timeouts
110
+
111
+ ## 11.0.0 - *2022-02-17*
112
+
113
+ - Remove delivery and move to calling RSpec directly via a reusable workflow
114
+ - Update tested platforms
115
+ - Enable `unified_mode` and require Chef >= 15.3
116
+ - Start nagios service
117
+ - Add support for Debian 11
118
+ - Use www-data user for nginx on Debian based systems
119
+
120
+ ## 10.0.4 - *2022-02-08*
121
+
122
+ - Standardise files with files in sous-chefs/repo-management
123
+
124
+ ## 10.0.3 - *2022-02-08*
125
+
126
+ - Remove delivery folder
127
+
128
+ ## 10.0.2 - *2021-08-30*
129
+
130
+ - Standardise files with files in sous-chefs/repo-management
131
+
132
+ ## 10.0.1 - *2021-06-01*
133
+
134
+ - Standardise files with files in sous-chefs/repo-management
135
+
136
+ ## 10.0.0 - *2021-02-08*
137
+
138
+ - Sous Chefs Adoption
139
+ - Standardise files with files in sous-chefs/repo-management
140
+ - Cookstyle fixes
141
+ - Convert definitions to custom resources
142
+ - Update nginx recipe to use newer nginx cookbook
143
+ - Refactor and improve source installation
144
+ - Fix InSpec tests
145
+ - Use proper locations for zapping distribution configuration
146
+ - Various fixes for pagerduty recipe
147
+ - Switch to using `apache2_mod_php` resource
148
+ - Fix idempotency and other misc kitchen fixes
149
+
150
+ ## 9.0.1 (2020-09-16)
151
+
152
+ - Cookstyle Bot Auto Corrections with Cookstyle 6.17.6
153
+
154
+ ## 9.0.0 (2020-09-08)
155
+
156
+ - Use multipackage installs to speed up installs
157
+ - Pin the Apache2 requirement at < 7.0 since 7.0+ is not compatible with this cookbook
158
+ - Remove some legacy and broken attribute gating that would prevent all attributes from being set on RHEL systems
159
+ - Remove the check for the legacy Pagerduty attribute at `node['nagios']['pagerduty_key']`. This needs to be set at `node['nagios']['pagerduty']['key']` now
160
+ - Use `node['nagios']['server']['dependencies']` attribute to set the packages to be installed in the source recipe
161
+ - Add support for Debian 10
162
+ - Create helpers library to better manage platform configuration
163
+ - Remove support for Debian 9 and Amazon Linux 2
164
+ - Update source build to nagios-4.4.6
165
+ - Ensure we install the cgis when building from source
166
+ - Remove allowed-ips suite as that should be tested with ChefSpec
167
+ - Switch to using php cookbook and fix nginx cookbook version
168
+ - Set sensitive for debconf-set-selections execute resource
169
+ - Remove support for Apache 2.2 (resolves #556)
170
+
171
+ ## 8.2.1 (2020-05-05)
172
+
173
+ - resolved cookstyle error: libraries/timeperiod.rb:72:15 convention: `Style/HashEachMethods`
174
+
175
+ ## 8.2.0 (2019-31-01)
176
+
177
+ - Require Chef Infra Client 14.0+ and remove the need for the build-essential cookbook depenedency
178
+ - Fix hash has no keys method
179
+ - Simplify platform detection logic in the attributes file
180
+ - Migrate to Github Actions for testing
181
+ - Use the :immediately timing not :immediate in notifications
182
+
183
+ ## 8.1.0 (May 8, 2018)
184
+
185
+ - Resolve incompatibilities with the latest PHP cookbook by installing php-gd
186
+ - Resolve multiple cookstyle warnings
187
+ - Use the build_essential resource instead of the build-essential cookbook so we can skip the cookbook entirely when on Chef 14
188
+ - Clarify in the readme that this cookbook requires RHEL 7+
189
+ - Skip definitions whose name starts with "!"
190
+ - Add a `node['nagios']['pagerduty']['proxy_url']` attribute
191
+
192
+ ## 8.0.0 (19-09-2017)
193
+
194
+ - #522 Drop support for RHEL 5
195
+ - #531 Drop support for Fedora OSes
196
+ - #534 Drop support for CentOS 6, Fedora OS, FreeBSD
197
+ - #541 Require Chef 12.9+
198
+ - #538 Update documentation for large installation tweaks and remove old attribute
199
+ - #522 Resolve Foodcritic warnings, Chef 13 failures
200
+ - #524 Update metadata maintainer and repo urls (moved to Sous Chefs)
201
+ - #529 Allow SSL settings overrides
202
+ - #530 Nginx refactor
203
+ - #532 Update links to refer to Sous-Chefs org
204
+ - #534 Multiple testing related improvements (Clean up kitchen config; Test Chef 12 and Chef 13 but allow Chef 13 to fail until it's properly supported)
205
+ - #537 Update recipe name change in apache2 4.0 cookbook (`apache2::mod_php5` becomes `apache2::mod_php`)
206
+ - #539 Remove chat page
207
+ - #540 Misc clean up and CookStyle fixes
208
+ - #541 Fix OpenSuse support
209
+ - #542 Test Kitchen config updates
210
+ - #544 Require apache2 cookbook >= 4.0
211
+ - #549 Yank old bats/ServerSpec tests and unsupported platform testing
212
+ - #550 Fix tests to allow Chef 12 and Chef 13 to pass for now
213
+ - #552 Switch from `chef_nginx` back to `nginx`
214
+
215
+ ## 7.2.7
216
+
217
+ - #479 Fix bug preventing Nagios upgrade from source
218
+ - #484 Fix #483, eventhandlers are now loaded before contacts
219
+ - #475 Make service groups do negation for removed hostgroups
220
+ - #481 Update lock file location for CentOS/Fedora
221
+ - #488 Fix rubocop warnings
222
+ - #497 Allow base authentication for listed IPs to be disabled
223
+ - #507 Minor fixes for README
224
+ - #508 Add descriptions to Pager Duty commands
225
+ - #510 Switch from nginx cookbook to chef_nginx cookbook
226
+ - #513 Fix rubocop warnings
227
+ - #516 Multiple improvements to align with other community cookbooks (Add delivery config; Add GitHub issue templates; Fix suite names for Test Kitchen in Travis; Fix CookStyle warnings; Update README content; Update kitchen-dokken config and use delivery local instead of rake)
228
+
229
+ ## 7.2.6
230
+
231
+ - #445 Fixing escalation_periods
232
+ - #448 Fixing service escalations
233
+ - #459 Fixing undefined method `push'
234
+ - #453 Fixing nodes without any tags
235
+ - #443 Merging the timezone settings
236
+ - #450 Allowing default guest user
237
+ - #454 Adding inheritance modifiers
238
+ - #462 Adding Apache LDAP settings
239
+ - #463 Adding '*' and 'null' as options
240
+ - #470 Adding option for wrapper cookbooks
241
+ - #470 Adding result_limit to cgi.cfg
242
+
243
+ ## 7.2.4
244
+
245
+ - #419 Fixing the nagios_interval logic and readme
246
+ - #421 Fixing loading of pagerduty databag contacts
247
+ - #430 Fixing loading of timeperiods out of databag with ducktyping
248
+ - #437 Fixing loading of unmanaged_host databag regards to environments
249
+ - #441 Enable setting of Fixnum's within nagios configuration attributes
250
+ - #426 Added command: service_notify_by_sms_email
251
+ - #435 Adding pagerduty.cgi and needed packages
252
+
253
+ ## 7.2.2
254
+
255
+ - Fixing the apache mpm breaking on centos.
256
+
257
+ ## 7.2.0
258
+
259
+ - Added centos 7.1 for testing.
260
+ - Added centos 5.11 for testing.
261
+ - Added test-kitchen tests.
262
+ - Added logic to exclude nodes based on tag.
263
+ - Including apache2::mpm_prefork for apache.
264
+ - Added the ability to specify command arguments within services.
265
+ - Added the ability to specify custom options on hosts, contacts and services.
266
+
267
+ ## 7.1.8
268
+
269
+ - Fixing the unmanagedhosts databag filter on environment.
270
+ - Fixing the services databag filter on environment.
271
+ - Moving the LWRP's providers into definitions.
272
+ This will remove some extra complexity and output will be
273
+ much nicer and debugging will be easier during the chef-converge.
274
+
275
+ ## 7.1.6
276
+
277
+ - Fixing the nagios resource provider delete action.
278
+ - Added option for custom apache auth based on attribute.
279
+ - Update cgi-path attibute on source install.
280
+ - Update on test-kitchen tests.
281
+ - Update on kitchen-vagrant version.
282
+
283
+ ## 7.1.4
284
+
285
+ - AuthzLDAPAuthoritative is removed in Apache 2.4.
286
+ - Fixed the pagerduty config by using LWRP.
287
+ - Made test config os (in)dependent.
288
+ - Added zap for config file cleanup.
289
+ - Added encrypted user databag support.
290
+ - Added extra configuration tests.
291
+ - Added gitter badge.
292
+
293
+ ## 7.1.2
294
+
295
+ - Fixed display of style sheets on Ubuntu 14.04+
296
+ - service_check_timeout_state config option is now only set on modern Nagios releases. This broke Ubuntu 10.04/12.04 service startup
297
+ - Updated Test Kitchen release / added additional platforms for testing
298
+ - Fixed the attribute used to enable notifications in the Readme file
299
+ - Fixed loading of node['nagios']['host_name_attribute']
300
+ - Search queries in hostgroups data bag are now limited to the monitored environments if using node['nagios']['monitored_environments']
301
+
302
+ ## 7.1.0
303
+
304
+ - Fixed class-type checking with duck-typing on update_options.
305
+ - Fixed host_name_attribute on nagios model.
306
+ - Moved all nagios configuration options within attributes.
307
+ - Moved all nagios configuration attributes into separate file.
308
+ - With the change above we might introduced some config problems.
309
+ Please check your attributes when upgrading.
310
+ - Added extra kitchen serverspec tests.
311
+
312
+ ## 7.0.8
313
+
314
+ - Fixed servicegroups members.
315
+ - Chaned the order of data bag loading (commands first).
316
+ - Cleanup of the internals of the nagios model.
317
+ - Added kitchen serverspec tests.
318
+
319
+ ## 7.0.6
320
+
321
+ - Fixed data bag import.(#346)
322
+ - Fixed missing create method on Servicegroup object. (#348)
323
+ - Fixed update_dependency_members for depedency objects.
324
+
325
+ ## 7.0.4
326
+
327
+ - Fixed the order for resource.cfg population to be correct.
328
+
329
+ ## 7.0.2
330
+
331
+ - Fixed the hardcoded cgi-bin path in server source.
332
+ - Fixed contact_groups within load_default_config recipe.
333
+ - Removed dead code from timeperiod.rb library.
334
+ - Ignore timeperiods that don't comply.
335
+ - Making time formats less restrictive. (#336)
336
+ - Make yum-epel recipe include optional via attribute.
337
+ - Only allow_empty_hostgroup_assignment for Nagios versions >= 3.4.0
338
+
339
+ ## 7.0.0
340
+
341
+ - Added providers for all nagios configuration objects.
342
+ - Added wiki pages explaining the providers.
343
+ - Added wiki pages explaining the databags.
344
+ - Updated chefspec (4.2.0)
345
+ - Please test this version before using it in production. Some logic and attributes have changes, so this might break your current setup.
346
+ - Allow defining parents in the unmanaged hosts data bag so you can build the host map.
347
+ - Setup Apache2 before trying to configure the webserver so paths will be created
348
+ - Installed EPEL on RHEL so package installs work
349
+ - Set the Apache log dir to that provided by Apache since the Nagios log dir is now locked down to just the nagios user / group
350
+ - Template the resource.cfg file on RHEL platforms to prevent check failures
351
+ - Fix cgi-bin page loads on RHEL systems
352
+ - Fix CSS files not loading on Debian based systems
353
+ - Updated Test Kitchen dependency to 1.3.1 from 1.2.1
354
+
355
+ ## 6.1.0
356
+
357
+ - Fix missing CSS files on RHEL/Fedora package installs
358
+ - Ensure the source file for Nagios is always downloaded to work around corrupt partial downloads
359
+ - Fixed permissions being changed on the resource directory during each run on RHEL systems
360
+ - Remove support for SSL V2 / V3 (Apache2/NGINX) and add TLS 1.1 and 1.2 (NGINX)
361
+ - Cleaned up and removed duplicate code from the web server configuration
362
+ - Added the ability to tag nodes with an attribute that excludes them from the monitoring search. See readme for details
363
+ - [BREAKING] The /nagios or /nagios3 URLs are no longer valid. Nagios should be installed on the root of the webserver and this never entirely worked
364
+ - Updated Rubocop rules
365
+ - Fixed specs to run with Chefspec 4.X
366
+
367
+ ## v6.0.4
368
+
369
+ - Fix normalized hostnames not normalizing the hostgroups
370
+ - Don't register the service templates so that Nagios will start properly
371
+ - Require Apache2 cookbook version 2.0 or greater due to breaking changes with how site.conf files are handled
372
+ - Added additional options for perfdata
373
+ - Added the ability to specify a URL to download patches that will be applied to the source install prior to compliation
374
+
375
+ ## v6.0.2
376
+
377
+ - Remove .DS_Store files in the supermarket file that caused failures on older versions of Berkshelf
378
+
379
+ ## v6.0.0
380
+
381
+ - [BREAKING] NRPE is no longer installed by the nagios cookbook. This is handled by the NRPE cookbook. Moving this logic allows for more fined grained control of how the two services are installed and configured
382
+ - [BREAKING] Previously the Nagios server was monitored out of the box using a NRPE check. This is no longer the case since the cookbooks are split. You'll need to add a services data bag to return this functionality
383
+ - [BREAKING] RHEL now defaults to installing via packages. If you would like to continue installing via source make sure to set the installation_method attribute
384
+ - [BREAKING] `additional_contacts` attribute has been removed. This was previously used for Pagerduty integration
385
+ - [BREAKING] Server setup is now handled in the nagios::default recipe vs. the nagios::server recipe. You will need to update roles / nodes referencing the old recipe
386
+
387
+ - htpasswd file should be setup after Nagios has been installed to ensure the user has been created
388
+ - Ensure that the Linux hostgroup still gets created even if the Nagios server is the first to come up in the environment
389
+ - Correctly set the vname on RHEL/Fedora platforms for source/package installs
390
+ - Set resource_dir in nagios.cfg on RHEL platforms with a new attribute
391
+ - Create the archives dir in the log on source installs
392
+ - Properly create the Nagios user/group on source installs
393
+ - Properly set the path for the p1.pl file on RHEL platforms
394
+ - Ensure that the hostgroups array doesn't include duplicates in the even that an environment and role have the same name
395
+ - Only template nagios.cfg once
396
+ - Fix ocsp-command typo in nagios.cfg
397
+ - Fix bug that prevented Apache2 recipe from completing
398
+ - Readme cleanup
399
+ - Created a new users_helper library to abstract much of the Ruby logic for building user lists out of the recipe
400
+ - Avoid writing out empty comments in templates for data bag driven configs
401
+ - Add a full chefignore file to help with Berkshelf
402
+ - Better documented host_perfdata_command and service_perfdata_command in the README
403
+ - Add possibility to configure default_service with options process_perf_data & action_url
404
+ - Add possibility to configure default_host with options process_perf_data & action_url
405
+ - Allow freshness_threshold and active_checks_enabled to be specified in templates
406
+ - Added a generic service-template w/min req. params
407
+ - New attribute node['nagios']['monitored_environments'] for specifying multiple environments you'd like to monitor
408
+ - Allow using the exclusion hostgroup format used by Nagios when defining the hostgroup for a check
409
+ - Host templates can now be defined via a new host_templates data bag.
410
+ - Vagrantfile updated for Vagrant 1.5 format changes
411
+ - Updated Rubocop / Foodcritic / Chefspec / Berkshelf gems to the latest for Travis testing
412
+ - Updated Berkshelf file to the 3.0 format
413
+ - Updated Test Kitchen / Kitchen Vagrant gems to the latest for local testing
414
+ - Test Kitchen suite added for source installs
415
+ - Ubuntu 13.04 swapped for 14.04 in Test Kitchen
416
+ - Added a large number of data bags to be used by Test Kitchen to handle several scenarios
417
+ - Setup port forwarding in Test Kitchen so you can converge the nodes and load the Web UI
418
+ - Added additional Test Kitchen and Chef Spec tests
419
+
420
+ ## v5.3.4
421
+
422
+ - Fixed two bugs that prevented Apache/NGINX web server setups from configuring correctly
423
+
424
+ ## v5.3.2
425
+
426
+ - Remove a development file that was accidentally added to the community site release
427
+
428
+ ## v5.3.0
429
+
430
+ - Directories for RHEL installations have been updated to use correct RHEL directories vs. Debian directories. You may need to override these directories with the existing directories to not break existing installations on RHEL. Proceed with caution.
431
+ - Cookbook no longer fails the run if a node has no roles
432
+ - Cookbook no longer fails if there are no users defined in the data bag
433
+ - Cookbook no longer fails if a node has no hostname
434
+ - Cookbook no longer fails if the node does not have a defined OS
435
+ - Fix incorrect Pagerduty key usage
436
+ - Allowed NRPE hosts were not being properly determined due to bad logic and a typo
437
+ - Improve Test-Kitchen support with newer RHEL point releases, Ubuntu 13.04, and Debian 6/7
438
+ - Simplified logic in web server detection for determining public domain and switches from symbols to strings throughout
439
+ - Support for Nagios host escalations via a new data bag. See the readme for additional details
440
+ - New attribute node['nagios']['monitoring_interface'] to allow specifying a specific network interface's IP to monitor
441
+ - You can now define the values for execute_service_checks, accept_passive_service_checks, execute_host_checks, and accept_passive_host_checks via attributes
442
+ - You can now define the values for obsess_over_services and obsess_over_hosts settings via attributes
443
+
444
+ ## v5.2.0
445
+
446
+ - [BREAKING] This release requires yum-epel, which requires the yum v3.0 cookbook. This may break other cookbooks in your environment
447
+ - [BREAKING] Change yum cookbook dependency to yum-epel dependecy as yum cookbook v3.0 removed epel repo setup functionality
448
+ - Several fixes to the Readme examples
449
+ - [BREAKING] Use the new monitoring-plugins.org address for the Nagios Plugins during source installs
450
+ - The version of apt defined in the Berksfile is no longer constrained
451
+ - Find all nodes by searching by node not hostname to workaround failures in ohai determining the hostname
452
+ - Allow defining of time periods via new data bag nagios_timeperiods. See the Readme for additional details
453
+
454
+ ## v5.1.0
455
+
456
+ - [COOK-3210] Contacts are now only written out if the contact has Nagios keys defined, which prevents e-mail-less contacts from being written out
457
+ - [COOK-4098] Fixed an incorrect example for using templates in the readme
458
+ - Fixed a typo in the servicedependencies.cfg.erb template that resulted in hostgroup_name always being blank
459
+ - The Yum cookbook dependency has been pinned to < 3.0 to prevent breakage when the 3.0 cookbook is released
460
+ - [COOK-2389] The logic used to determine what IP to identify the monitored host by has been moved into the default library to simplify the hosts.cfg.erb template
461
+ - A Vagrantfile has been added to allow for testing on Ubuntu 10.04/12.04 and CentOS 5.9/6.4 in multi-node setups
462
+ - Chef spec tests have been added for the server
463
+ - Gemfile updated to use Rubocop 0.15 and TestKitchen 1.0
464
+ - [COOK-3913]/[COOK-3914] Source based installations now use Nagios 3.5.1 and the Nagios Plugins 1.5.0
465
+
466
+ - The names of the various data bags used in the cookbook can now be controlled with new attributes found in the server.rb attribute file
467
+ - All configuration options in the cgi.cfg and nrpe.cfg files can now be controlled via attributes
468
+ - [COOK-3690] An intermediate SSL certificate can now be used on the web server as defined in the new attribute `ssl_cert_chain_file`
469
+ - [COOK-2732] A service can now be applied to multiple hostgroups via the data bag definition
470
+ - [COOK-3781] Service escalations can now be written using wildcards. See the readme for an example of this feature.
471
+ - [COOK-3702] Multiple PagerDuty keys for different contacts can be defined via a new nagios_pagerduty data bag. See the readme for more information on the new data bag and attributes for this feature.
472
+ - [COOK-3774]Services can be limited to run on nagios servers in specific chef environments by adding a new "activate_check_in_environment" key to the services data bag. See the Services section of the readme for an example.
473
+ - [CHEF-4702] Chef solo users can now user solo-search for data bag searchd (<https://github.com/edelight/chef-solo-search>)
474
+
475
+ ## v5.0.2
476
+
477
+ - [COOK-3777] - Update NRPE in nagios cookbook to 2.15
478
+ - [COOK-3021] - NRPE LWRP updates files every run
479
+ - Fixing up to pass rubocop
480
+
481
+ ## v5.0.0
482
+
483
+ - [COOK-3778] - Fix missing customization points for Icinga
484
+ - [COOK-3731] - Remove range searches in Nagios cookbook that break chef-zero
485
+ - [COOK-3729] - Update Nagios Plugin download URL
486
+ - [COOK-3579] - Stop shipping icons files that arent used
487
+ - [COOK-3332] - Fix `nagios::client` failures on Chef Solo
488
+ - [COOK-3730] - Change the default authentication method
489
+ - [COOK-3696] - Sort hostgroups so they don't get updated on each run
490
+ - [COOK-3670] - Add Travis support
491
+ - [COOK-3583] - Update Nagios source to 3.5.1
492
+ - [COOK-3577] - Cleanup code style
493
+ - [COOK-3287] - Provide more customization points to make it possible to use Icinga
494
+ - [COOK-1725] - Add configurable notification options for `nagios::pagerduty`
495
+ - [COOK-3723] - Support regexp_matching in Nagios
496
+ - [COOK-3695] - Add more tunables for default host template
497
+
498
+ ## v4.2.0
499
+
500
+ - [COOK-3445] - Allow setting service dependencies from data dags
501
+ - [COOK-3429] - Allow setting timezone from attribute
502
+ - [COOK-3422] - Enable large installation tweaks by attribute
503
+ - [COOK-3440] - Permit additional pagerduty-like integrations
504
+ - [COOK-3136] - Fix `nagios::client_source` under Gentoo
505
+ - [COOK-3111] - Add support for alternate users databag to Nagios cookbook
506
+ - [COOK-2891] - Improve RHEL 5 detection in Nagios cookbook to catch all versions
507
+ - [COOK-2721] - Add Chef Solo support
508
+ - [COOK-3405] - Fix NRPE source install on Ubuntu
509
+ - [COOK-3404] - Fix `htpasswd` file references (Chef 11 fix)
510
+ - [COOK-3282] - Use `host_name` attribute when used in conjunction with a search-defined hostgroup
511
+ - [COOK-3162] - Allow setting port
512
+ - [COOK-3140] - No longer import databag users even if they don't have an `htpasswd` value set
513
+ - [COOK-3068] - Use `nagios_conf` definition in `nagios::pagerduty`
514
+
515
+ ## v4.1.4
516
+
517
+ - [COOK-3014]: Nagios cookbook imports data bag users even if they have action `:remove`
518
+ - [COOK-2826]: Allow Nagios cookbook to configure location of SSL files
519
+
520
+ ## v4.1.2
521
+
522
+ - [COOK-2967]: nagios cookbook has foodcritic failure
523
+ - [COOK-2630]: Improvements to Readme and Services.cfg.erb template
524
+ - [COOK-2460]: create attribute for `allowed_hosts`
525
+
526
+ ## v4.1.0
527
+
528
+ - [COOK-2257] - Nagios incorrectly tries to use cloud IPs due to a OHAI bug
529
+ - [COOK-2474] - hosts.cfg.erb assumes if nagios server node has the cloud attributes all nodes have the cloud attributes
530
+ - [COOK-1068] - Nagios::client should support CentOS/RHEL NRPE installs via package
531
+ - [COOK-2565] - nginx don't send `AUTH_USER` & `REMOTE_USER` to nagios
532
+ - [COOK-2546] - nrpe config files should not be world readable
533
+ - [COOK-2558] - Services that are attached to hostgroups created from the nagios_hostgroups databag are not created
534
+ - [COOK-2612] - Nagios can't start if search can't find hosts defined in nagios_hostgroups
535
+ - [COOK-2473] - Install Nagios 3.4.4 for source installs
536
+ - [COOK-2541] - Nagios cookbook should use node.roles instead of node.run_list.roles when calculating hostgroups
537
+ - [COOK-2543] - Adds the ability to normalize hostnames to lowercase
538
+ - [COOK-2450] - Add ability to define service groups through data bags.
539
+ - [COOK-2642] - With multiple nagios servers, they can't use NRPE to check each other
540
+ - [COOK-2613] - Install Nagios 3.5.0 when installing from source
541
+
542
+ ## v4.0.0
543
+
544
+ This is a major release that refactors a significant amount of the service configuration to use data bags rather than hardcoding specific checks in the templates. The README describes how to create services via data bags.
545
+
546
+ The main incompatibility and breaking change is that the default services that are monitored by Nagios is reduced to only the "check-nagios" service. This means that existing installations will need to start converting checks over to the new data bag entries.
547
+
548
+ - [COOK-1553] - Nagios: check_nagios command does not work if Nagios is installed from source
549
+ - [COOK-1554] - Nagios: The nagios server should be added to all relevant host groups
550
+ - [COOK-1746] - nagios should provide more flexibility for server aliases
551
+ - [COOK-2006] - Extract default checks out of nagios
552
+ - [COOK-2129] - If a host is in the _default environment it should go into the default hostgroup
553
+ - [COOK-2130] - Chef needs to use the correct nagios plugin path on 64bit CentOS systems
554
+ - [COOK-2131] - gd development packages are not necessary for NRPE installs from source
555
+ - [COOK-2132] - Update NRPE installs to 2.14 from 2.13
556
+ - [COOK-2134] - Handle nagios-nrpe-server and nrpe names for NRPE in the init scripts and cookbook
557
+ - [COOK-2135] - Use with-nagios-user and group options source NRPE installs
558
+ - [COOK-2136] - Nagios will not pass config check when multiple machines in different domains have the same hostname
559
+ - [COOK-2150] - hostgroups data bag search doesn't respect the multi_environment_monitoring attribute
560
+ - [COOK-2186] - add service escalation to nagios
561
+ - [COOK-2188] - A notification interval of zero is valid but prohibited by the cookbook
562
+ - [COOK-2200] - Templates and Services from data bags don't specify intervals in the same way as the rest of the cookbook
563
+ - [COOK-2216] - Nagios cookbook readme needs improvement
564
+ - [COOK-2240] - Nagios server setup needs to gracefully fail when users data bag is not present
565
+ - [COOK-2241] - Stylesheets fail to load on a fresh Nagios install
566
+ - [COOK-2242] - Remove unused checks in the NRPE config file
567
+ - [COOK-2245] - nagios::server writes openid apache configs before including apache2::mod_auth_openid
568
+ - [COOK-2246] - Most of the commands in the Nagios cookbook don't work
569
+ - [COOK-2247] - nagios::client_source sets pkgs to a string, then tries to pkgs.each do {|pkg| package pkg }
570
+ - [COOK-2257] - Nagios incorrectly tries to use cloud IPs due to a OHAI bug
571
+ - [COOK-2275] - The Nagios3 download URL attribute is unused
572
+ - [COOK-2285] - Refactor data bag searches into library
573
+ - [COOK-2294] - Add cas authentication to nagios cookbook
574
+ - [COOK-2295] - nagios: chef tries to start nagios-nrpe-server on every run
575
+ - [COOK-2300] - You should be able to define a nagios_service into the "all" host group
576
+ - [COOK-2341] - pagerduty_nagios.pl URL changed
577
+ - [COOK-2350] - Nagios server fails to start when installed via source on Ubuntu/Debian
578
+ - [COOK-2369] - Add LDAP support in the nagios cookbook.
579
+ - [COOK-2374] - Setting an unmanaged host to a string returns 'no method error'
580
+ - [COOK-2375] - Allows adding a service that utilizes a pre-existing command
581
+ - [COOK-2433] - Nagios: ldap authentication needs to handle anonymous binding ldap servers
582
+
583
+ ## v3.1.0
584
+
585
+ - [COOK-2032] - Use public IP address for inter-cloud checks and private for intra-cloud checks
586
+ - [COOK-2081] - add support for `notes_url` to `nagios_services` data bags
587
+
588
+ ## v3.0.0
589
+
590
+ This is a major release due to some dramatic refactoring to the service check configuration which may not be compatible with existing implementations of this cookbook.
591
+
592
+ - [COOK-1544] - Nagios cookbook needs to support event handlers
593
+ - [COOK-1785] - Template causes service restart every time
594
+ - [COOK-1879] - Nagios: add configuration to automatically redirect `http://myserver/` to `http://myserver/nagios3/`
595
+ - [COOK-1880] - Extra attribute was left over after the `multi_environment_monitoring` update
596
+ - [COOK-1881] - Oracle should be added to the metadata for Nagios
597
+ - [COOK-1891] - README says to modify the nrpe.cfg template, but the cookbook exports a resource for nrpe checks.
598
+ - [COOK-1947] - Nagios: Pager duty portions of Nagios cookbook not using nagios user/group attributes
599
+ - [COOK-1949] - Nagios: A bad role on a node shouldn't cause the cookbook to fail
600
+ - [COOK-1950] - Nagios: Simplify hostgroup building and cookbook code
601
+ - [COOK-1995] - Nagios: Update source install to use Nagios 3.4.3 not 3.4.1
602
+ - [COOK-2005] - Remove unusable check commands from nagios
603
+ - [COOK-2031] - Adding templates as a data bag, extending service data bag to take arbitrary config items
604
+ - [COOK-2032] - Use public IP address for intra-cloud checks
605
+ - [COOK-2034] - Nagios cookbook calls search more often than necessary
606
+ - [COOK-2054] - Use service description in the nagios_services databag items
607
+ - [COOK-2061] - template.erb refers to a service variable when it should reference template.
608
+
609
+ ## v2.0.0
610
+
611
+ - [COOK-1543] - Nagios cookbook needs to be able to monitor environments
612
+ - [COOK-1556] - Nagios: Add ability to define service template to be used in the `nagios_services` data bag
613
+ - [COOK-1618] - Users data bag group allowed to log into Nagios should be configurable
614
+ - [COOK-1696] - Nagios: Support defining non-Chef managed hosts via data bag items
615
+ - [COOK-1697] - nagios: Source installs should install the latest NRPE and Nagios plugins
616
+ - [COOK-1717] - Nagios: nagios server web page under Apache2 fails to load out of the box
617
+ - [COOK-1723] - Amazon missing as a supported OS in the Nagios metadata
618
+ - [COOK-1732] - `nagios::client_source` includes duplicate resources
619
+ - [COOK-1815] - Switch Nagios to use platform_family not platform
620
+ - [COOK-1816] - Nagios: mod ssl shouldn't get installed if SSL isn't being used
621
+ - [COOK-1887] - `value_for_platform_family` use in Nagios cookbook is broken
622
+
623
+ ## v1.3.0
624
+
625
+ - [COOK-715] - don't source /etc/sysconfig/network on non-RHEL platforms
626
+ - [COOK-769] - don't use nagios specific values in users data bag items if they don't exist
627
+ - [COOK-1206] - add nginx support
628
+ - [COOK-1225] - corrected inconsistencies (mode, user/group, template headers)
629
+ - [COOK-1281] - add support for amazon linux
630
+ - [COOK-1365] - nagios_conf does not use nagios user/group attributes
631
+ - [COOK-1410] - remvoe deprecated package resource
632
+ - [COOK-1411] - Nagios server source installs should not necessarily install the NRPE client from source
633
+ - [COOK-1412] - Nagios installs from source do not install a mail client so notifications fail
634
+ - [COOK-1413] - install nagios 3.4.1 instead of 3.2.3
635
+ - [COOK-1518] - missing sysadmins variable in apache recipe
636
+ - [COOK-1541] - support environments that have windows systems
637
+ - [COOK-1542] - allow setting flap detection via attribute
638
+ - [COOK-1545] - add support for defining host groups using search in data bags
639
+ - [COOK-1553] - check_nagios command doesn't work from source install
640
+ - [COOK-1555] - include service template for monitoring logs
641
+ - [COOK-1557] - check-nagios command only works in environments with single nagios server
642
+ - [COOK-1587] - use default attributes instead of normal in cookbook attributes files
643
+
644
+ ## V1.2.6
645
+
646
+ - [COOK-860] - set mail command with an attribute by platform
647
+
648
+ ## v1.2.4
649
+
650
+ - [COOK-1119] - attributes for command_timeout / dont_blame_nrpe options
651
+ - [COOK-1120] - allow monitoring from servers in multiple chef_environments
652
+
653
+ ## v1.2.2
654
+
655
+ - [COOK-991] - NRPE LWRP No Longer Requires a Template
656
+ - [COOK-955] - Nagios Service Checks Defined by Data Bags
657
+
658
+ ## v1.2.0
659
+
660
+ - [COOK-837] - Adding a Recipe for PagerDuty integration
661
+ - [COOK-868] - use node, not @node in template
662
+ - [COOK-869] - corrected NRPE PID path
663
+ - [COOK-907] - LWRP for defining NRPE checks
664
+ - [COOK-917] - changes to `mod_auth_openid` module
665
+
666
+ ## v1.0.4
667
+
668
+ - [COOK-838] - Add HTTPS Option to Nagios Cookbook
669
+
670
+ ## v1.0.2
671
+
672
+ - [COOK-636] - Nagios server recipe attempts to start too soon
673
+ - [COOK-815] - Nagios Config Changes Kill Nagios If Config Goes Bad
674
+
675
+ ## v1.0.0
676
+
677
+ - Use Chef 0.10's `node.chef_environment` instead of `node['app_environment']`.
678
+ - source installation support on both client and server sides
679
+ - initial RHEL/CentOS/Fedora support