control, rules: Limit the LVM plugin to Linux.
rules: Disable the cgroups plugin on non-Linux.
rules: Disable the aquaero plugin which requires libaquaero5.
changelog: Documented Marc's changes.
Thanks to him for providing the patch!
Thanks to him for providing the patch!
changelog: Updated to 5.4.0-1.
Merged branch 'mf/master'.
Initial packaging for 5.4.0.
Merged branch 'unstable-nmu'.
Conflicts:
debian/changelog
debian/patches/00list
Conflicts:
debian/changelog
debian/patches/00list
diff for NMU version 5.1.0-3.1
Closes: #683525, #708718.
Signed-off-by: Sebastian Harl <tokkee@debian.org>
Closes: #683525, #708718.
Signed-off-by: Sebastian Harl <tokkee@debian.org>
5.3 fixes #703446.
collectd.conf: Added examples for new aggregation options.
collectd.conf: Updated for 5.3.0.
copyright: Updated for 5.3.0.
changelog: Updated to 5.3.0-1.
Released changelog.
control: Updated standards-version to 3.9.4 -- no changes.
collectd-utils.install: Install collectd-tg manpage.
patches: Removed postgresql_writer_memleak.dpatch -- applied upstream.
Updated copyright.
changelog: Updated to 5.2.1-1.
Released changelog for experimental.
patches: Added postgresql_writer_memleak.dpatch.
… fixing a memory leak in the PostgreSQL writer implementation.
… fixing a memory leak in the PostgreSQL writer implementation.
Merged branch 'master' into experimental.
collectd.conf: Added sample modbus configuration.
po/: Updated Brazilian Portuguese debconf templates.
Thanks to Adriano Rafael Gomes!
Closes: #685760
Thanks to Adriano Rafael Gomes!
Closes: #685760
patches/: rrd_filter_path.dpatch: Also patch the migrate-4-5 script.
While this is not required for the (optional) auto-migration when updating the
package (the full path is passed as an argument) it helps the user to just use
the script without the need to add further arguments.
Thanks to Joey Hess for reporting this!
Closes: #689001
While this is not required for the (optional) auto-migration when updating the
package (the full path is passed as an argument) it helps the user to just use
the script without the need to add further arguments.
Thanks to Joey Hess for reporting this!
Closes: #689001
changelog: The confmodule postrm issue has also been reported as #688285.
collectd-core.postrm: Source the debconf confmodule.
… in order to make the db_* functions available.
Thanks to Joey Hess for reporting this!
Closes: #680172
… in order to make the db_* functions available.
Thanks to Joey Hess for reporting this!
Closes: #680172
changelog: Documented that #592881 has been resolved.
Fixed parse errors when using (including) empty config files.
Thanks to Reinhard Tartler for reporting this!
Closes: #592881
Fixed parse errors when using (including) empty config files.
Thanks to Reinhard Tartler for reporting this!
Closes: #592881
changelog: Documented that #657122 has been resolved.
The df plugin now ignores 'rootfs' file-system types for the root file-system
to make sure it's collected only once.
Thanks to Florian La Roche for reporting this.
Closes: #657122
The df plugin now ignores 'rootfs' file-system types for the root file-system
to make sure it's collected only once.
Thanks to Florian La Roche for reporting this.
Closes: #657122
changelog: Documented that #630683 had been fixed.
The ping plugin doesn't abort if ping_send fails but report an error only.
Thanks to Bernd Zeimetz for reporting this!
Closes: #630683
The ping plugin doesn't abort if ping_send fails but report an error only.
Thanks to Bernd Zeimetz for reporting this!
Closes: #630683
control: Let collectd-dev depend on -core << 5.3~.
… rather than << 5.2~.
… rather than << 5.2~.
collectd.conf: Let the 'df' plugin ignore various file-systems by default.
Ignore 'rootfs' (else, the root file-system would appear twice, causing one of
the updates to fail and spam the log) and the usual virtual / temporary
file-systems.
Ignore 'rootfs' (else, the root file-system would appear twice, causing one of
the updates to fail and spam the log) and the usual virtual / temporary
file-systems.
Released the changelog; uploading to experimental (Wheezy freeze).
patches/: Added myplugin_includes.dpatch.
This patch changes the example plugin include path to
/usr/include/collectd/core according to the changes done in collectd-dev.
This patch changes the example plugin include path to
/usr/include/collectd/core according to the changes done in collectd-dev.
collectd-dev.install: Install the headers to /usr/include/collectd/core/.
… rather than /usr/include/collectd/. The latter is used by libcollectdclient
which causes file conflicts.
… rather than /usr/include/collectd/. The latter is used by libcollectdclient
which causes file conflicts.
libcollectdclient1.symbols: Updated for 5.2.
Renamed libcollectclient0 to libcollectdclient1.
… due to the SONAME version bump.
… due to the SONAME version bump.
README.Debian: Mention Java and Python besides Perl as well.
libcollectdclient-dev.install: Install the libcollectdclient network*.h headers.
collectd-utils.install: Install collectd-tg(1).
rules: Fix installation paths used for Perl bindings.
Upstream now passes INSTALL_BASE rather than PREFIX to Makefile.PL which
resulted in the bindings being installed to different locations than before.
Upstream now passes INSTALL_BASE rather than PREFIX to Makefile.PL which
resulted in the bindings being installed to different locations than before.
patches/: Removed rtnl_dump_filter.dpatch; merged upstream.
patches/: Removed migrate-4-5-df.dpatch; merged upstream.
collectd.conf: Added example PostgreSQL writer configuration.
rules: Install postgresql examples from contrib/.
collectd.conf: Added the new RRA configuration options to 'rrdcached'.
collectd.conf: Documented the interval setting.
sample configuration: Added section comments as specified in upstream's config.
collectd.conf: Updated sample configurations for 5.2.
control, rules: Handle the 'pf' plugin.
Build-depend on kfreebsd-kernel-headers (kfreebsd-any only) and disable the
'pf' plugin on non-kfreebsd systems.
Build-depend on kfreebsd-kernel-headers (kfreebsd-any only) and disable the
'pf' plugin on non-kfreebsd systems.
changelog: Mention new plugins.
Updated copyright for version 5.2.0.
Updated changelog to 5.2.0-1.
Fixed migrate-4-5-df.dpatch: Added missing end quotes.
migrate-4-5-df.dpatch: Fixed patch format.
Prepared changelog for release.
collectd-core.collectd.init.d: Catch disabled state in start/restart.
Don't exit with an error status in that case. Amongst others, this fixes an
upgrade of collectd when the daemon is disabled.
Thanks to Florian Ernst for reporting this and Evgeni Golov for providing (an
early) patch!
To let those changes to work correctly, don't use 'set -e' and 'exit 0' (at
the end) in order to let return statuses propagate correctly.
Closes: #681216
Don't exit with an error status in that case. Amongst others, this fixes an
upgrade of collectd when the daemon is disabled.
Thanks to Florian Ernst for reporting this and Evgeni Golov for providing (an
early) patch!
To let those changes to work correctly, don't use 'set -e' and 'exit 0' (at
the end) in order to let return statuses propagate correctly.
Closes: #681216
changelog: The migrate-4-5 related changes close #681363.
collectd-core.postinst: Pass --rrd* parameters to migrate-4-5.px.
… in order to let the script find those binaries/scripts.
… in order to let the script find those binaries/scripts.
patches/: Added migrate-4-5-df.dpatch.
… fixing the migration of 'df' values in migrate-4-5.px; thanks to
'markuskaindl' for reporting this on IRC.
… fixing the migration of 'df' values in migrate-4-5.px; thanks to
'markuskaindl' for reporting this on IRC.
po/: Formating changes made by debconf-updatepo.
changelog: Updated for release.
init.d: Use log_* and status_of_proc functions from LSB's init functions.
… in order to make collectd's output look like all the other output.
Thanks to Matthias Urlichs for pointing this out.
Closes: #679355
… in order to make collectd's output look like all the other output.
Thanks to Matthias Urlichs for pointing this out.
Closes: #679355
collectd-core.collectd.init.d: Source /lib/lsb/init-functions.
This will make systemd work in compatibility mode.
Thanks to Michael Stapelberg for reporting this.
Closes: #679544
This will make systemd work in compatibility mode.
Thanks to Michael Stapelberg for reporting this.
Closes: #679544
po/: Updated Spanish debconf translation; thanks to Omar Campagne.
Closes: #679281
Closes: #679281
po/: Updated French debconf translation; thanks to Steve Petruzzello.
Closes: #678614
Closes: #678614
po/: Updated Galician debconf translation; thanks to Jorge Barreiro.
Closes: #678467
Closes: #678467
po/: Updated Polish debconf translation; thanks to Michał Kułach.
Closes: #678157
Closes: #678157
po/: Updated Portuguese debconf translation; thanks to Américo Monteiro.
Closes: #678048
Closes: #678048
po/: Updated Russian debconf translation; thanks to Yuri Kozlov.
Closes: #678016
Closes: #678016
po/: Updated Czech debconf translation; thanks to Martin Šín.
Closes: #677949
Closes: #677949
po/: Updated Danish debconf translation; thanks to Joe Dalton.
Closes: #677908
Closes: #677908
po/: Added Slovak debconf translation; thanks to 'helix84'.
Closes: #677902
Closes: #677902
po/sv.po: Updated by debconf-updatepo.
po/: Updated Swedish debconf translation; thanks to Martin Bagge.
Closes: #677842
Closes: #677842
control, rules: Build depend on libmodbus-dev and enabled modbus plugin.
5.1 now supports libmodbus 3; thanks to Ivo De Decker for reporting this.
Closes: #639796
5.1 now supports libmodbus 3; thanks to Ivo De Decker for reporting this.
Closes: #639796
collectd-core.postinst: Don't create unused temp. directory.
po/de.po: Minor corrections.
collectd-core.override: Limit netlink override to appropriate architectures.
po/it.po: Updated by debconf-updatepo.
changelog: Updated timestamp.
Merged branch 'collectd-4'.
Conflicts:
debian/changelog
debian/po/cs.po
debian/po/da.po
debian/po/de.po
debian/po/es.po
debian/po/fr.po
debian/po/nl.po
debian/po/pl.po
debian/po/pt.po
debian/po/pt_BR.po
debian/po/ru.po
debian/po/sv.po
Conflicts:
debian/changelog
debian/po/cs.po
debian/po/da.po
debian/po/de.po
debian/po/es.po
debian/po/fr.po
debian/po/nl.po
debian/po/pl.po
debian/po/pt.po
debian/po/pt_BR.po
debian/po/ru.po
debian/po/sv.po
changelog: Released 4.10.7-2.
po/: Updated German debconf translation.
… based on Holger Wansing's feedback on debian-l10n-german.
… based on Holger Wansing's feedback on debian-l10n-german.
po/: Updated Spanish debconf translation; thanks to Omar Campagne.
Closes: #676383
Closes: #676383
po/: Updated French debconf translation; thanks to S.Petruzzello and C.PERRIER
Closes: #674629
Closes: #674629
po/: Updated Brazilian Portuguese debconf translation; thanks to A. R. Gomes.
Closes: #674589
Closes: #674589
po/: Updated Danish debconf translation; thanks to Joe Dalton.
Closes: #674459
Closes: #674459
po/: Updated Portuguese debconf translation; thanks to Américo Monteiro.
Closes: #674065
Closes: #674065
po/: Added Italian debconf translation; thanks to Beatrice Torracca.
Closes: #674044
Closes: #674044
po/: Updated Russian debconf translation; thanks to Vladimir Zhbanov.
Closes: #673890
Closes: #673890
po/: Updated Swedish debconf translation; thanks to Martin Bagge.
Closes: #673888
Closes: #673888
po/: Updated Dutch debconf translation; thanks to Jeroen Schot.
Closes: #673769
Closes: #673769
po/: Updated Polish debconf translation; thanks to Michał Kułach.
Closes: #673697
Closes: #673697
po/: Updated Czech debconf translation; thanks to Martin Šín.
Closes: #673693
Closes: #673693
5.1 supports syslog logging; closes #632940.
changelog: New upstream release closes #630968.
control: Added collectdctl to collectd-utils description.
control: Let collectd-dev depend on collectd << 5.2~.
… rather than 4.11~.
… rather than 4.11~.