From: Marc Fournier Date: Tue, 9 Feb 2016 22:27:29 +0000 (+0100) Subject: Merge branch 'collectd-5.5' X-Git-Tag: collectd-5.6.0~473 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=00f9279d9711c9882b65d54fd72c2f25a3f403fc;p=collectd.git Merge branch 'collectd-5.5' --- 00f9279d9711c9882b65d54fd72c2f25a3f403fc diff --cc src/collectd.conf.pod index fde34931,0eabec7f..6a94edc4 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@@ -4483,23 -4305,20 +4483,35 @@@ Default: C + +The I plugin writes notifications to Nagios' I as +a I. + +Available configuration options: + +=over 4 + +=item B I + +Sets the I to write to. Defaults to F. + +=back + =head2 Plugin C + The C plugin collects per-peer ntpd data such as time offset and time + dispersion. + + For talking to B, it mimics what the B control program does on + wire - using B specific requests. This mode is deprecated with + newer B releases (4.2.7p230 and later). For the C plugin to work + correctly with them, the ntp daemon must be explicitly configured to + enable B (which is disabled by default). Refer to the I + manual page for details. + + Available configuration options for the C plugin: + =over 4 =item B I diff --cc version-gen.sh index 493a6ebf,e0ad124e..d7c6a765 --- a/version-gen.sh +++ b/version-gen.sh @@@ -1,10 -1,8 +1,10 @@@ #!/bin/sh - DEFAULT_VERSION="5.5.0.git" + DEFAULT_VERSION="5.5.1.git" -VERSION="`git describe 2> /dev/null | grep collectd | sed -e 's/^collectd-//'`" +if [ -d .git ]; then + VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//' -e 's/-/./g'`" +fi if test -z "$VERSION"; then VERSION="$DEFAULT_VERSION"