[syslog-ng]snapshots of 1.6.0rc2 available

José Pedro Oliveira syslog-ng@lists.balabit.hu
Thu, 10 Apr 2003 15:18:47 +0100


This is a multi-part message in MIME format.
--------------060301080802040007070006
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 8bit

Balazs Scheidler wrote:

The following patches are attached to this email:

- sgml documentation: corrected udp/tcp options table caption
- corrected the README file in the contrib directory
- corrected the Red Hat config file in the contrib directory
   (two of the filters were only accepting messages from a specific 
priority ando not from gretaer or equal priorities).
- minor corrections to the Red Hat init script in the contrib directory


Best regards,
jpo

> Hi,
> 
> Although not officially released, I have uploaded a test version of 1.6.0rc2 to
> our website:
> 
> http://www.balabit.com/downloads/syslog-ng/1.6/src-snapshots/syslog-ng-1.6.0rc2+20030410manual.tar.gz
> 
> The accompanying libol snapshot is also available. This release should fix
> the configure problems in 1.6.0rc1 and also adds performance improvements
> with the gperf based macro name resolution.
> 
> If no problems are reported within a day or two I'll release syslog-ng
> 1.6.0rc2 officially.
> 

-- 
José Pedro Oliveira
* mailto: jpo@di.uminho.pt * http://gsd.di.uminho.pt/~jpo *

--------------060301080802040007070006
Content-Type: text/plain;
 name="syslog-ng-1.6.0rc2-patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: inline;
 filename="syslog-ng-1.6.0rc2-patch"

diff -ru syslog-ng-1.6.0rc2+20030410manual-original/contrib/init.d.RedHat-7.3 syslog-ng-1.6.0rc2+20030410manual-modified/contrib/init.d.RedHat-7.3
--- syslog-ng-1.6.0rc2+20030410manual-original/contrib/init.d.RedHat-7.3	2002-09-27 15:55:52.000000000 +0100
+++ syslog-ng-1.6.0rc2+20030410manual-modified/contrib/init.d.RedHat-7.3	2003-04-10 15:04:53.000000000 +0100
@@ -64,7 +64,7 @@
 . /etc/rc.d/init.d/functions
 
 # Tack on path to syslog-ng if not already in PATH
-SYSLOGNG_PATH=":/usr/local/sbin"
+SYSLOGNG_PATH=":/sbin"
 
 PATH=$PATH$SYSLOGNG_PATH
 export PATH
@@ -146,7 +146,7 @@
 	restart
 	;;
   condrestart)
-	[ -f /var/lock/subsys/syslog-ng ] && restart || :
+	[ -f /var/lock/subsys/${INIT_PROG} ] && restart || :
 	;;
   *)
 	echo $"Usage: $0 {start|stop|status|restart|reload}"
diff -ru syslog-ng-1.6.0rc2+20030410manual-original/contrib/README syslog-ng-1.6.0rc2+20030410manual-modified/contrib/README
--- syslog-ng-1.6.0rc2+20030410manual-original/contrib/README	2003-04-10 11:51:00.000000000 +0100
+++ syslog-ng-1.6.0rc2+20030410manual-modified/contrib/README	2003-04-10 15:10:15.000000000 +0100
@@ -4,7 +4,9 @@
 
 init.d.HP-UX 		- sample init script for HP-UX
 init.d.RedHat 		- sample init script for RedHat GNU/Linux
+init.d.RedHat-7.3	- sample init script for RedHat 7.3 GNU/Linux
 init.d.SunOS 		- sample init script for Sun Solaris
+init.d.SuSE 		- sample init script for SuSE GNU/Linux
 init.d.solaris 		- another sample init script for Sun Solaris
 syslog-ng.conf.HP-UX 	- sample configuration for HP-UX
 syslog-ng.conf.RedHat 	- sample configuration for RedHat GNU/Linux
diff -ru syslog-ng-1.6.0rc2+20030410manual-original/contrib/syslog-ng.conf.RedHat syslog-ng-1.6.0rc2+20030410manual-modified/contrib/syslog-ng.conf.RedHat
--- syslog-ng-1.6.0rc2+20030410manual-original/contrib/syslog-ng.conf.RedHat	2002-08-22 15:05:39.000000000 +0100
+++ syslog-ng-1.6.0rc2+20030410manual-modified/contrib/syslog-ng.conf.RedHat	2003-04-10 15:08:13.000000000 +0100
@@ -15,6 +15,10 @@
 # Updated by Frank Crawford (<Frank.Crawford@ac3.com.au>) - 22 Aug 2002
 #	- use the log_prefix option as per Balazs Scheidler's email
 #
+# Updated by José Pedro Oliveira (<jpo@di.uminho.pt>) - 10 Apr 2003
+#	- corrected filters f_filter2 and f_filter6 (levels greater or equal)
+#
+#
 
 options { sync (0);
           time_reopen (10);
@@ -38,14 +42,13 @@
 destination d_mlal { usertty("*"); };
 
 filter f_filter1     { facility(kern); };
-filter f_filter2     { level(info) and
-                     not (facility(mail)
-			or facility(authpriv) or facility(cron)); };
+filter f_filter2     { level(info..emerg) and
+                       not facility(mail,authpriv,cron); };
 filter f_filter3     { facility(authpriv); };
 filter f_filter4     { facility(mail); };
 filter f_filter5     { level(emerg); };
 filter f_filter6     { facility(uucp) or
-                     (facility(news) and level(crit)); };
+                       (facility(news) and level(crit..emerg)); };
 filter f_filter7     { facility(local7); };
 filter f_filter8     { facility(cron); };
 
diff -ru syslog-ng-1.6.0rc2+20030410manual-original/doc/sgml/syslog-ng.sgml syslog-ng-1.6.0rc2+20030410manual-modified/doc/sgml/syslog-ng.sgml
--- syslog-ng-1.6.0rc2+20030410manual-original/doc/sgml/syslog-ng.sgml	2003-04-10 08:47:49.000000000 +0100
+++ syslog-ng-1.6.0rc2+20030410manual-modified/doc/sgml/syslog-ng.sgml	2003-04-10 15:03:38.000000000 +0100
@@ -609,7 +609,7 @@
 	  The following options are valid for udp() and tcp()
 	</para>
 	<table>
-	  <title>Available options for unix-stream &amp; unix-dgram</title>
+	  <title>Available options for udp &amp; tcp</title>
 	  <tgroup cols=4>
 	    <thead>
 	      <row>

--------------060301080802040007070006--