summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2014-10-15 13:58:08 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2014-10-15 13:58:08 (GMT)
commitea0bfeb5d074584a128353427e4c4572eb0c2107 (patch)
tree1be49c9683112ee711257197ff7d3d66636406a0
parentef4fb1bf57b5cb27a57375fb522a0cd130a74b56 (diff)
downloadsite-ea0bfeb5d074584a128353427e4c4572eb0c2107.tar.gz
Publish the 2.1 release
-rw-r--r--web/input/news/release-2-1.md49
-rw-r--r--web/macros.py2
2 files changed, 50 insertions, 1 deletions
diff --git a/web/input/news/release-2-1.md b/web/input/news/release-2-1.md
new file mode 100644
index 0000000..2dacda2
--- /dev/null
+++ b/web/input/news/release-2-1.md
@@ -0,0 +1,49 @@
1title: Version 2.1 Released
2author: Holger Weiß
3date: 2014-10-15
4---
5
6The Monitoring Plugins Development Team is proud to announce version 2.1 of the
7Monitoring Plugins! This release comes with various enhancements and fixes
8provided by more than ten contributors. Many thanks to all of you!
9<end-of-teaser>
10
11For the list of notable changes in this release, see below.
12
13You can get the tarball from our [download page][download].
14
15## Enhancements
16
17* New `check_hpjd` `-p` option for port specification
18* New `./configure` `--with-qmail-qstat-command` option to specify the path to
19 `qmail-qstat(8)`
20* New `check_ifstatus` `-n` option to ignore interfaces by name
21* `check_ntp_peer` now has specific state output for each metric
22* New `check_mysql` `-n` option to ignore authentication failures
23* `check_tcp` now mentions IP address and port or socket name in error
24 messages
25* New `check_ntp_time` `-o` option to add expected offset
26* In verbose mode, `check_disk` now shows which partitions actually cause an
27 error state
28* `check_dig` now supports using the `drill(1)` tool
29* `check_dig` now supports the `-6` option
30* `check_file_age` now emits performance data
31
32## Fixes
33
34* Fix `check_jabber` to work with Openfire servers
35* Fix bad string matching in `check_oracle` when testing TNS server
36* Fix `check_ifstatus` performance data output
37* Fix certificate expire time output
38* `check_dns` now verifies that the answer is coming from the queried server
39* Fix `check_by_ssh` to accept `--hostname` as argument
40
41## Warnings
42
43* This release doesn't ship with an RPM spec file, please contribute to [PR
44 #1283][spec-issue] if you are interested in it
45
46[download]: /download.html
47[spec-issue]: https://github.com/monitoring-plugins/monitoring-plugins/pull/1283
48
49<!--% # vim:set filetype=markdown textwidth=78 joinspaces expandtab: # %-->
diff --git a/web/macros.py b/web/macros.py
index 1539093..97d36d3 100644
--- a/web/macros.py
+++ b/web/macros.py
@@ -2,7 +2,7 @@ import email.utils
2import os.path 2import os.path
3import time 3import time
4 4
5plugins_release = '2.0' 5plugins_release = '2.1'
6mib_release = '1.0.1' 6mib_release = '1.0.1'
7release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-') 7release_notes = 'news/release-%s.html' % plugins_release.replace('.', '-')
8site_url = 'https://www.monitoring-plugins.org/' 8site_url = 'https://www.monitoring-plugins.org/'