-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Changes
454 lines (260 loc) · 13.2 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
2024-10-14 Matteo Corti <[email protected]>
* check_updates (run_yum): Support for DNF5
2024-03-06 Matteo Corti <[email protected]>
* check_updates: Fixed a bug with --quiet
2023-06-26 Matteo Corti <[email protected]>
* check_updates (run): Fixed a bug when no $HOME is defined
2022-07-29 Matteo Corti <[email protected]>
* check_updates (run): Better documentation of the --boot-check option
2022-07-21 Matteo Corti <[email protected]>
* check_updates (check_yum): If the kernel version is critical and the updates are only a warning the exit code will be critical
2022-05-12 Matteo Corti <[email protected]>
* check_updates: removed up2date (no more in use)
2022-02-01 Matteo Corti <[email protected]>
* check_updates: removed a test message in the OK output
2022-01-17 Matteo Corti <[email protected]>
* check_updates: added an option --assumeyes to allow the import of GPG keys
2022-01-13 Matteo Corti <[email protected]>
* check_updates (run): --security-only and --number-only are not allowed together
2021-11-30 Matteo Corti <[email protected]>
check_updates (run): better error message
2021-11-05 Matteo Corti <[email protected]>
* check_updates (check_running_kernel): skip the kernel checks if the kernel is not installed with RPM
2021-09-15 Matteo Corti <[email protected]>
* check_updates (run): adding user info to the debugging output
2021-09-02 Frank Schroeter
* check_updates: Add support for AlmaLinux
2021-08-21 Ben Li <[email protected]>
* check_updates: Add support for Rocky Linux
2021-07-22 Matteo Corti <[email protected]>
* check_updates (run_command): LC_ALL=C
2021-05-19 Matteo Corti <[email protected]>
* check_updates (debug): Debug to a file
2021-04-15 Matteo Corti <[email protected]>
* check_updates: Added the --number-only option
2021-01-21 Matteo Corti <[email protected]>
* check_updates (check_running_kernel): support for CentOSPlus
2020-06-19 Matteo Corti <[email protected]>
* check_updates (run_yum): Ignoring an additional message from YUM
2020-06-05 Matteo Corti <[email protected]>
* check_updates: (run_yum): Ignoring an additional message from YUM
2020-03-12 Matteo Corti <[email protected]>
* check_updates (run): Show the version number in the debug output
* check_updates(run_yum): better YUM output handling
2020-02-26 Matteo Corti <[email protected]>
* check_updates (run_yum): Ignoring an additional message from YUM
2019-12-28 Matteo Corti <[email protected]>
* check_updates (run_yum): using check_updates -q
2019-12-11 Matteo Corti <[email protected]>
* check_updates (run_yum): Disables Foreman
2019-10-29 Matteo Corti <[email protected]>
* check_updates: Added support for Sangoma FreePBX distribution
2019-08-20 Matteo Corti <[email protected]>
* check_updates (run_yum): Fixed the parsing of --security output
2019-08-05 Matteo Corti <[email protected]>
* check_updates: checks for missing GPG key
2019-06-13 Matteo Corti <[email protected]>
* check_updates: RHEL 8 support
2019-05-07 Matteo Corti <[email protected]>
* check_updates (clean_kernel_version): Azure CentOS support
2019-02-11 Matteo Corti <[email protected]>
* check_updates: Fixed a bug while checking for the security plugin
2018-12-19 Matteo Corti <[email protected]>
* check_updates: Added --quiet
2018-11-27 Matteo Corti <[email protected]>
* check_updates: Removed Nagios::Plugin
2018-06-19 Matteo Corti <[email protected]>
* check_updates: Fixed the output about non-security updates
2018-06-13 Matteo Corti <[email protected]>
* check_updates: Fixed the package count on YUM systems with Satellite
2018-05-23 Matteo Corti <[email protected]>
* check_updates: Fixed a bug in the processing of YUM output
2017-07-18 Matteo Corti <[email protected]>
* Version 1.6.20
* Makefile.PL: Perl 5.26 support ('.' missing from @INC)
2017-01-03 Matteo Corti <[email protected]>
* Version 1.6.19
* check_updates: DNF does no more check for the --security option (implicit)
* check_updates: arguments after commands when executing YUM or DNF
2016-05-30 Matteo Corti <[email protected]>
* Version 1.6.18
* check_updates: 'yum clean' is optional (introduced in 1.6.17)
2016-05-26 Matteo Corti <[email protected]>
* Version 1.6.17
* check_updates: handles "obsolete" packages
2016-04-18 Matteo Corti <[email protected]>
* Version 1.6.16
* check_updates: handles "aufs" kernel
2016-01-20 Matteo Corti <[email protected]>
* Version 1.6.15
* check_updates: handles "core-" when comparing kernel versions
2016-01-14 Matteo Corti <[email protected]>
* Version 1.6.14
* check_updates: Fixed a bug when only '-core' kernel packages are installed
2016-01-12 PhiBo https://github.com/phibos
* Version 1.6.13
* check_updates: New option --boot-check-warning
2015-08-28 <[email protected]>
* Version 1.6.12
* check_updates: fixes the tests on systems without Monitoring::Plugin
2015-08-27 Matteo Corti <[email protected]>
* check_updates: version 1.6.11 merges two different branches of 1.6.10
2015-08-27 Matteo Corti <[email protected]>
* Version 1.6.10
* check_updates: initial Support for DNF
2015-01-09 Matteo Corti <[email protected]>
* Version 1.6.9
* check_updates: using Monitoring::Plugin instead of the deprecated
Nagios::Plugin
2014-12-28 Matteo Corti <[email protected]>
* check_updates: updated the check for the presence of the --security
option
2014-12-19 Matteo Corti <[email protected]>
* t/00_modules.t: removed dependency on Sort::Version
2014-09-21 Matteo Corti <[email protected]>
* Version 1.6.8
* check_updates: removed dependency on Sort::Version
2014-05-23 Matteo Corti <[email protected]>
* Version 1.6.7
* check_updates: support for Oracle UEK-kernels
2013-10-10 Matteo Corti <[email protected]>
* Version 1.6.6
* check_updates: support for openvz kernels
2013-07-15 Matteo Corti <[email protected]>
* Version 1.6.5
* check_updates: disabled ePN
2013-06-18 Matteo Corti <[email protected]>
* Version 1.6.4
* check_updates: handle yum output split on more lines
2013-05-11 Matteo Corti <[email protected]>
* Version 1.6.3
* check_updates: do not print the performance data of the security
updates if the Yum security plugin is not installed
2013-03-29 Matteo Corti <[email protected]>
* Version 1.6.2
* check_updates: Applied a patch adding the possibility to pass
arguments to Yum
2012-11-18 Matteo Corti <[email protected]>
* check_updates: Added Oracle to the systems list
2012-09-03 Matteo Corti <[email protected]>
* Version 1.6.1
* check_updates: recognized PUIAS Linux
2012-04-15 Matteo Corti <[email protected]>
* Version 1.6.0
* check_updates: added an option --security-only to ignore non-security
related updates
2011-12-04 Matteo Corti <[email protected]>
* Version 1.5.2
* check_updates: fixed a bug introduced in 1.5.1 which prevented system
detection on CentOS 5.X
2011-12-03 Matteo Corti <[email protected]>
* Version 1.5.1
* check_updates: support for Amazon Linux
2011-10-03 Matteo Corti <[email protected]>
* Version 1.5.0
* check_updates: fixed a bug which caused the -w and -c options
to be ignored
2011-09-23 Matteo Corti <[email protected]>
* Version 1.4.15
* check_updates: using /etc/redhat-release instead of /etc/issue
2011-05-25 Matteo Corti <[email protected]>
* Version 1.4.14
* check_updates: fixed a problem when checking if a piped command was
successful
2011-05-24 Matteo Corti <[email protected]>
* Version 1.4.13
* check_updates: fixed the unit tests on systems with older Test::Simple
versions
* Version 1.4.12
* check_updates: fixed the detection of RH 6 and Scientific Linux Systems
(thanks to J. Oliveira and T. Edwardsson)
* check_updates: several style fixes (cleaned with Perl::Critic)
* t: some unit tests (to be extended)
2010-11-18 Matteo Corti <[email protected]>
* Version 1.4.11
* check_updates: fixed the processing of Xen kernels
2010-11-15 Matteo Corti <[email protected]>
* Version 1.4.10
* check_updates.pod: updated the licensing information (GPL v3+)
2010-11-01 Matteo Corti <[email protected]>
* Version 1.4.9
* check_updates: removed the dependency on version.pm
2010-10-31 Matteo Corti <[email protected]>
* Version 1.4.8
* check_updates: fixed the license specification (GPL v3+)
* AUTHORS: fixed a typo
2010-02-16 root <[email protected]>
* Version 1.4.7
* check_updates: the output of yum check-updates can get wrapped -> check for double lines
2010-02-03 Matteo Corti <[email protected]>
* check_updates: constants are now global because of embedded Perl
2009-12-10 Matteo Corti <[email protected]>
* Version 1.4.6
2009-12-09 Matteo Corti <[email protected]>
* Makefile.PL: man page being installed in the wrong section (3 instead of 1)
* Makefile.PL: Perl site vs vendor directories
* check_updates.spec: removed the the %{?dist} macro from the changelog entries
2009-12-08 root <[email protected]>
* check_updates (check_up2date): fixed 'no updates' message on up2date based systems
2009-12-08 Matteo Corti <[email protected]>
* Removed unnecessary dependence on List::MoreUtils, List::Util and Number::Format (fixed #55)
2009-12-07 Matteo Corti <[email protected]>
* Version 1.4.4
* check_updates (clean_kernel_version): fixed a bug with SMP kernels version cleanup
* check_updates (clean_kernel_version): fixed a bug with PAE kernels version cleanup
2009-12-07 Matteo Corti <[email protected]>
* check_updates.pod: fixed outdated documentation
* doc: several additions spelling fixes (thanks to J. Oliveira)
2009-12-06 Matteo Corti <[email protected]>
* check_updates: fixed licensing information (see #52)
* check_updates.spec: fixed several build problems (see #53)
* check_updates: unified kernel cleanup code (see #54)
2009-12-04 Matteo Corti <[email protected]>
* check_updates: distinguish between security and non-critical updates
when yum-plugin-security is installed
2009-11-11 Matteo Corti <[email protected]>
* check_updates: fixed a regex that failed to strip
el5PAE from the version
2009-09-20 Matteo Corti <[email protected]>
* check_updates: fixed a bug in the Red Hat System detection
2009-07-22 root <[email protected]>
* check_updates: does not parse the output of rpm because of localization problems
2009-06-15 Matteo Corti <[email protected]>
* check_updates: recognize PAE kernels
2009-05-19 Matteo Corti <[email protected]>
* check_updates: --critical and --warning are working again
* check_updates: Nagios 3 extended info with the outdated packages
2009-04-07 Matteo Corti <[email protected]>
* check_updates: RH5 support
2008-12-05 Matteo Corti <[email protected]>
* check_updates: got rid of RPM2 (broken with modern RPM versions)
* check_updates: using Nagios::Plugin::Getopt for the processing of command line options
* check_updates: timeout
2008-11-14 Matteo Corti <[email protected]>
* check_updates: fixed a bug with updates and excluded packages (wrong count)
2008-08-06 root <[email protected]>
* check_updates: workaround for a possible bug in Sort::Versions
(http://rt.cpan.org/Public/Bug/Display.html?id=34622)
2008-06-03 Matteo Corti <[email protected]>
* check_updates: separated the POD documentation because of ePN issues
* check_updates: added the -[no]-boot-check option to disable the kernel check
* check_updates: corrected a bug occurring when yum debug level is 0
2008-05-15 Matteo Corti <[email protected]>
* check_updates: uname returns the kernel version with the architecture at the end
2008-05-08 root <[email protected]>
* check_updates: Correct kernel versions sorting
2008-03-17 Matteo Corti <[email protected]>
* check_updates: CentOS uses yum but had smp and non smp kernels
2008-03-07 Matteo Corti <[email protected]>
* check_updates: fixed a problem in the notification of a needed reboot
2008-02-26 Matteo Corti <[email protected]>
* check_updates: fixed a problem while counting the number of obsolete
packages
2008-02-21 Matteo Corti <[email protected]>
* check_updates: fixed the kernel check on RH systems
2008-02-21 Matteo Corti <[email protected]>
* check_updates: checks if the running kernel is the latest
installed
* check_updates: removed back-ticks (using open -|)
2008-01-22 Matteo Corti <[email protected]>
* check_updates: recognizes CentOS