Merge branch 'collectd-3.9'
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 25 Jun 2006 10:13:07 +0000 (12:13 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 25 Jun 2006 10:13:07 +0000 (12:13 +0200)
1  2 
ChangeLog
collectd.spec
debian/changelog
src/collectd.c

diff --combined ChangeLog
+++ b/ChangeLog
@@@ -1,13 -1,11 +1,21 @@@
 +      * The `disk' plugin has been ported to Darwin.
 +      * The `battery' plugin should work on many Apple computers now.
 +      * The `traffic' plugin can now ignore certain interfaces. Also,
 +        statistics for sent/received packets and errors have been added.
 +      * A plugin to monitor APC UPSes using `apcupsd' has been added. Thanks
 +        to Anthony Gialluca for contributing this plugin and providing me
 +        with a test environment :)
 +      * A plugin for moniroting an NTP instance and the local clock drift
 +        has been added.
 +
+ 2006-06-18, Version 3.9.4
+       * The Solaris code in the `swap' plugin has been changed to reflect
+         the numbers returned by `swap -s'. Thanks to Christophe Kalt for
+         working this out.
+       * The debugging system has been fixed to work with the Sun libc.
+       * When built without librrd the variable `operating_mode' could be
+         uninitialized. Thanks to David Elliot for reporting the bug.
  2006-06-01, Version 3.9.3
        * Fixed the ping-plugin under FreeBSD and Mac OS X. Potentially other
          operating systems also profit from the changes, but I wasn't able to
          sequence checking the `ping' plugin stopped working after
          approximately 7.6 days.
  
 +2006-05-09, Version 3.8.5
 +      * Applied a patch to the `liboping' library. Due to a bug in the
 +        sequence checking the `ping' plugin stopped working after
 +        approximately 7.6 days.
 +
  2006-04-21, Version 3.9.1
        * Build issues with Solaris and possible other architectures have been
          resolved.
@@@ -32,7 -25,7 +40,7 @@@
          been resolved.
        * A bug in the `ping' plugin has been fixed. Sorry folks.
  
 -2006-04-15, Version 3.9.0
 +2006-04-02, Version 3.9.0
        * A plugin to monitor the Apache webserver has been added.
          <http://httpd.apache.org/>
        * A plugin to collect statistics about virtual servers using VServer.
diff --combined collectd.spec
@@@ -1,6 -1,6 +1,6 @@@
  Summary:      Statistics collection daemon for filling RRD files.
  Name:           collectd
- Version:      3.9.3
+ Version:      3.9.4
  Release:      1
  Source:               http://collectd.org/files/%{name}-%{version}.tar.gz
  License:      GPL
@@@ -71,7 -71,6 +71,7 @@@ rm -rf $RPM_BUILD_ROO
  %attr(0444,root,root) %{_mandir}/man1/*
  %attr(0444,root,root) %{_mandir}/man5/*
  %attr(0444,root,root) %{_libdir}/%{name}/apple_sensors.so*
 +%attr(0444,root,root) %{_libdir}/%{name}/apcups.so*
  %attr(0444,root,root) %{_libdir}/%{name}/battery.so*
  %attr(0444,root,root) %{_libdir}/%{name}/cpu.so*
  %attr(0444,root,root) %{_libdir}/%{name}/cpufreq.so*
  %attr(0444,root,root) %{_libdir}/%{name}/sensors.so*
  
  %changelog
+ * Tue Jun 18 2006 Florian octo Forster <octo@verplant.org> 3.9.4-1
+ - New upstream version
  * Tue Jun 01 2006 Florian octo Forster <octo@verplant.org> 3.9.3-1
  - New upstream version
  
  * Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.9.2-1
  - New upstream version
  
 +* Tue May 09 2006 Florian octo Forster <octo@verplant.org> 3.8.5-1
 +- New upstream version
 +
  * Fri Apr 21 2006 Florian octo Forster <octo@verplant.org> 3.9.1-1
  - New upstream version
  
diff --combined debian/changelog
@@@ -1,3 -1,9 +1,9 @@@
+ collectd (3.9.4) unstable; urgency=low
+   * New upstream version 
+  -- Florian Forster <octo@leeloo.home.verplant.org>  Sun, 18 Jun 2006 19:50:44 +0200
  collectd (3.9.3) unstable; urgency=low
  
    * New upstream version 
@@@ -10,12 -16,6 +16,12 @@@ collectd (3.9.2-1) unstable; urgency=lo
  
   -- Florian Forster <octo@verplant.org>  Tue,  9 May 2006 11:12:00 +0200
  
 +collectd (3.8.5-1) unstable; urgency=low
 +
 +  * New upstream version
 +
 + -- Florian Forster <octo@verplant.org>  Tue,  9 May 2006 10:56:00 +0200
 +
  collectd (3.9.1-1) unstable; urgency=low
  
    * New upstream version
diff --combined src/collectd.c
@@@ -201,7 -201,7 +201,7 @@@ static int start_client (void
  
                if (timeval_sub_timespec (&tv_next, &tv_now, &ts_wait) != 0)
                {
 -                      syslog (LOG_WARNING, "No sleeping because `timeval_sub_timespec' returned non-zero!");
 +                      syslog (LOG_WARNING, "Not sleeping because `timeval_sub_timespec' returned non-zero!");
                        continue;
                }
  
@@@ -291,6 -291,8 +291,8 @@@ int main (int argc, char **argv
  
  #if HAVE_LIBRRD
        operating_mode = MODE_LOCAL;
+ #else
+       operating_mode = MODE_CLIENT;
  #endif
  
        /* open syslog */