Hello community,

here is the log from the commit of package monit for openSUSE:12.1 checked in 
at 2011-10-26 15:31:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:12.1/monit (Old)
 and      /work/SRC/openSUSE:12.1/.monit.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "monit", Maintainer is "lmue...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:12.1/monit/monit.changes 2011-10-24 13:07:57.000000000 
+0200
+++ /work/SRC/openSUSE:12.1/.monit.new/monit.changes    2011-10-28 
17:11:03.000000000 +0200
@@ -1,0 +2,46 @@
+Tue Oct 25 22:08:47 UTC 2011 - pascal.ble...@opensuse.org
+
+- update to 5.3.1:
+  * log the particular connection attempt failure in debug mode when the retry
+    is enabled
+  * Monit can deliver events and status to independent M/Monit instances if
+    multiple mmonit URLs are set
+  * fixed: the ICMP echo (ping) test may report false positive error if the
+    machine where Monit is running has heavy ICMP traffic generated by other
+    applications
+  * fixed: the file content match test will be performed even on the existing
+    content when Monit starts; the last position is saved to the statefile, so
+    monit won't generate alert after restart; note that when you start the
+    monit 5.3.1 the first time, it can do actions for content match which was
+    handled by previous monit version already as the previous monit versions
+    didn't saved the position
+  * make the monitoring state persistent for manual mode services
+  * display the memory usage total % in the status overview; the memory usage
+    in kB displayed the total already, so the percentage didn't match
+  * fix the HTML overview page alignment in the Internet Explorer
+  * fix sporadic SSL routines:func(169):reason(161) errors
+  * if MySQL protocol test failed, report the correct MySQL error code
+
+- changes from 5.3.0:
+  * new 'check program' statement added: allows to check the exit status of an
+    external program or script from Monit
+  * added crontab style support for individual services; you can now specify
+    when an individual service should run its checks (or not run)
+  * connection retry option added: allows to retry a network connection in the
+    same testing cycle before reporting an error
+  * detailed protocol connection errors are now included in alerts
+  * the HTML overview page displays the CPU and memory total now (including
+    children), so real service related usage is displayed also for services
+    which spawn worker processes, such as Apache or Spamassassin
+  * HTML view improvements
+  * fix MySQL protocol test: MySQL 5.5.12 returns new error code in the case of
+    authentication failure
+  * the stacktrace logging on error is disabled in -v (verbose) mode as it was
+    too verbose for common service debugging tasks, it can be enabled using -vv
+    option
+  * improve how fast Monit check if a program was started or stopped
+  * fix the monitoring state presentation during service restart which
+    temporarily displayed "Not monitored", whereas the monitoring was enabled
+  * the "data collected" is updated only if the check was not skipped
+
+-------------------------------------------------------------------

Old:
----
  monit-5.2.5.tar.bz2

New:
----
  monit-5.3.1.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ monit.spec ++++++
--- /var/tmp/diff_new_pack.pfVCgm/_old  2011-10-28 17:11:06.000000000 +0200
+++ /var/tmp/diff_new_pack.pfVCgm/_new  2011-10-28 17:11:06.000000000 +0200
@@ -19,7 +19,7 @@
 
 
 Name:           monit
-Version:        5.2.5
+Version:        5.3.1
 Release:        1
 Summary:        Service Manager and Monitor System
 # http://mmonit.com/monit/dist/monit-%{version}.tar.gz
@@ -51,16 +51,6 @@
 checksum changes, or size changes. You can even use monit to monitor
 remote hosts: monit can ping a remote host and check port connections.
 
-
-
-
-Authors:
---------
-    Jan-Henrik Haukeland <hauk at tildeslash dot com>
-    Martin Pala <martin.pala at iol dot cz>
-    Rory Toma <rory at digeo dot com>
-    Christian Hopp <chopp at iei dot tu-clausthal dot de>
-
 %package doc
 License:        GNU General Public License (GPL)
 Summary:        Service Manager and Monitor System (Documentation and Examples)
@@ -90,18 +80,14 @@
 find doc/ -type f -size 0 -exec %__rm {} \;
 
 %build
-#autoreconf -fiv
 export CFLAGS="%{optflags} -fno-strict-aliasing"
 %configure \
        --with-ssl-lib-dir="%{_libdir}"
 
-%__make %{?jobs:-j%{jobs}}
+%__make %{?_smp_flags}
 
 %install
-%__make \
-       BINDIR="%{buildroot}%{_bindir}" \
-       MANDIR="%{buildroot}%{_mandir}/man1" \
-       install
+%__make DESTDIR="%{buildroot}" install
 
 %__install -d \
        "%{buildroot}/etc/init.d" \
@@ -150,12 +136,12 @@
 
 %__install -d "%{buildroot}%{_docdir}/%{name}"
 >doc.main.lst
-for f in COPYING LICENSE; do
+for f in COPYING; do
     %__install -m0644 "$f" "%{buildroot}%{_docdir}/%{name}/$f"
     echo "%doc %{_docdir}/%{name}/$f" >>doc.main.lst
 done
 >doc.doc.lst
-for f in CHANGES.txt PLATFORMS README* doc; do
+for f in CHANGES README* doc; do
     %__cp -a "$f" "%{buildroot}%{_docdir}/%{name}/"
     echo "%doc %{_docdir}/%{name}/$(basename $f)" >>doc.doc.lst
 done

++++++ monit-5.2.5.tar.bz2 -> monit-5.3.1.tar.bz2 ++++++
++++ 205504 lines of diff (skipped)

++++++ monit-page_shift.patch ++++++
--- /var/tmp/diff_new_pack.pfVCgm/_old  2011-10-28 17:11:06.000000000 +0200
+++ /var/tmp/diff_new_pack.pfVCgm/_new  2011-10-28 17:11:06.000000000 +0200
@@ -1,6 +1,6 @@
---- process/sysdep_LINUX.c.orig        2010-09-24 00:18:10.000000000 +0200
-+++ process/sysdep_LINUX.c     2010-09-24 00:18:41.000000000 +0200
-@@ -279,10 +279,7 @@
+--- src/process/sysdep_LINUX.c.orig    2011-10-26 00:13:56.558000464 +0200
++++ src/process/sysdep_LINUX.c 2011-10-26 00:14:22.753000463 +0200
+@@ -269,10 +269,7 @@
      if (stat_item_state == 'Z')
        pt[i].status_flag |= PROCESS_ZOMBIE;
  

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to