diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2004-12-08 17:56:27 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2004-12-08 17:56:27 +0000 |
commit | 1d9fd143b71847c2bb17d0fc3989fdd59c68dddd (patch) | |
tree | 24cefb49285855583aea1029f4fac27551d9e883 | |
parent | 9deb0c2b787680fb958624925815b62e02bddc47 (diff) | |
download | rsyslog-1d9fd143b71847c2bb17d0fc3989fdd59c68dddd.tar.gz rsyslog-1d9fd143b71847c2bb17d0fc3989fdd59c68dddd.tar.xz rsyslog-1d9fd143b71847c2bb17d0fc3989fdd59c68dddd.zip |
version 0.8.0 beta
-rw-r--r-- | ANNOUNCE | 7 | ||||
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | sample.conf | 2 | ||||
-rw-r--r-- | version.h | 4 |
4 files changed, 10 insertions, 9 deletions
@@ -7,12 +7,12 @@ it supports - fully configurable output formats, including * high precision timestamps with year ;) * access to each of the message parts as well as substrings thereof - (include access to faciltiy and priority) + (includes access to facility and priority) * access to the raw message received - direct logging to MySQL database servers - compatibility to stock linux syslogd -Rsyslog is GPL'ed software. Details on it can be found at +Rsyslog is GPL'ed software. Details and the download on it can be found at http://www.monitorware.com/rsyslog/ @@ -31,7 +31,8 @@ made it into rsyslog ;)). We hope to receive ample feedback. The more feedback we receive, the more enhancements will happen (and the faster they will appear). You can -send any feedback and suggestion to me at rgerhards@adiscon.com. +send any feedback and suggestion to me at rgerhards@adiscon.com (A mailing +list will be added soon). Rainer Gerhards Adiscon @@ -3,8 +3,8 @@ CC= gcc #CFLAGS= -g -DSYSV -Wall LDFLAGS= -g -#CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce -CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce -DWITH_DB +CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce +#CFLAGS= $(RPM_OPT_FLAGS) -O3 -DSYSV -fomit-frame-pointer -Wall -fno-strength-reduce -DWITH_DB LDFLAGS= -s # Look where your install program is. @@ -13,7 +13,7 @@ BINDIR = /usr/sbin MANDIR = /usr/man # Uncommenting the following to use mysql. -LIBS = -lmysqlclient #/var/lib/mysql/mysql +#LIBS = -lmysqlclient #/var/lib/mysql/mysql # There is one report that under an all ELF system there may be a need to # explicilty link with libresolv.a. If linking syslogd fails you may wish diff --git a/sample.conf b/sample.conf index f2afe3d2..2bf85b1b 100644 --- a/sample.conf +++ b/sample.conf @@ -119,7 +119,7 @@ $template TraditionalFormat,"%timegenerated% %HOSTNAME% %syslogtag%%msg:::drop-last-lf%\n" # A template that tells you a little more about the message: -$template precise,"%syslogpriority%,%syslogfacility%,%timegenerated::fulltime%,%HOSTNAME%,%syslogtag%,%msg%\n" +$template precise,"%syslogpriority%,%syslogfacility%,%timegenerated:::fulltime%,%HOSTNAME%,%syslogtag%,%msg%\n" # A template that resembles RFC 3164 on-the-wire format: # (yes, there is NO space betwen syslogtag and msg! that's important!) @@ -1,2 +1,2 @@ -#define VERSION "0.2" -#define PATCHLEVEL "1" +#define VERSION "0.8" +#define PATCHLEVEL "0" |