RE: syslog-ng digest, Vol 1 #465 - 2 msgs
There is a problem with version 1.5.8. The config file that the daemon is checkin for is syslog-ngsyslog-ng.conf Seems like an accidental repeat. Should be syslog-ng.conf Yan Rolland The Parameter -----Original Message----- From: syslog-ng-admin@lists.balabit.hu [mailto:syslog-ng-admin@lists.balabit.hu] Sent: Saturday, July 14, 2001 00:57 To: syslog-ng@lists.balabit.hu Subject: syslog-ng digest, Vol 1 #465 - 2 msgs Send syslog-ng mailing list submissions to syslog-ng@lists.balabit.hu To subscribe or unsubscribe via the web, visit https://lists.balabit.hu/mailman/listinfo/syslog-ng or, via email, send a message with subject or body 'help' to syslog-ng-request@lists.balabit.hu You can reach the person managing the list at syslog-ng-admin@lists.balabit.hu When replying, please edit your Subject line so it is more specific than "Re: Contents of syslog-ng digest..." Today's Topics: 1. Re: pulling data from a file (Brad Arlt) 2. Syslog 1.4.12, Solaris 8-x86: Too few arguments... (Sander) --__--__-- Message: 1 Date: Fri, 13 Jul 2001 14:02:57 -0600 From: Brad Arlt <arlt@cpsc.ucalgary.ca> To: syslog-ng@lists.balabit.hu Subject: Re: [syslog-ng]pulling data from a file Reply-To: syslog-ng@lists.balabit.hu On Fri, Jul 13, 2001 at 12:32:39PM -0500, Matt Okeson-Harlow wrote:
this is all well and good, a fifo works just fine, only problem is that cnr rolls the log files over itself... any ideas on how to get a tail -f to reset and start reading the new file?
tail won't. You would normally restart tail. You could just put the needed commands in your log rolling script. ---------------------------------------------------------------------------- __o Bradley Arlt Email: arlt@cpsc.ucalgary.ca o__ _ \<_ WWW: www.acs.ucalgary.ca/~bdarlt _>/ _ (_)/(_) -Eat well, sleep peacefully, drink lots, and ride like hell. (_)\(_) --__--__-- Message: 2 Date: Fri, 13 Jul 2001 23:25:10 +0200 From: Sander <sander@sanderscorner.com> To: syslog-ng@lists.balabit.hu Subject: [syslog-ng]Syslog 1.4.12, Solaris 8-x86: Too few arguments... Reply-To: syslog-ng@lists.balabit.hu I'm trying to compile syslog-ng 1.4.12 using gcc-2.95.3 and receive this error: gcc -DHAVE_CONFIG_H -I. -I/v/src/syslog-ng-1.4.12/src -I. -O2 -Wall -I/usr/local/include/libol -D_GNU_SOURCE -c afstreams.c afstreams.c: In function `io_stream_get': afstreams.c:167: too few arguments to function `init_file' *** Error code 1 make: Fatal error: Command failed for target `afstreams.o' Current working directory /v/src/syslog-ng-1.4.12/src *** Error code 1 make: Fatal error: Command failed for target `all-recursive' Current working directory /v/src/syslog-ng-1.4.12/src *** Error code 1 make: Fatal error: Command failed for target `all-recursive-am' Current working directory /v/src/syslog-ng-1.4.12/src *** Error code 1 make: Fatal error: Command failed for target `all-recursive' Anyone seen this before? Sander P.S.: Another minor point (just a warning), gcc also complains about this: gcc -DHAVE_CONFIG_H -I. -I/v/src/syslog-ng-1.4.12/src -I. -O2 -Wall -I/usr/local/include/libol -D_GNU_SOURCE -c log.c log.c: In function `parse_log_msg': log.c:58: warning: subscript has type `char' --__--__-- _______________________________________________ syslog-ng maillist - syslog-ng@lists.balabit.hu https://lists.balabit.hu/mailman/listinfo/syslog-ng End of syslog-ng Digest
On Mon, Jul 16, 2001 at 12:16:57PM -0400, Rolland, Yan wrote:
There is a problem with version 1.5.8.
The config file that the daemon is checkin for is syslog-ngsyslog-ng.conf Seems like an accidental repeat. Should be syslog-ng.conf
there was a missing slash in syslog-ng.h, this patch fixes it: diff -u -r1.19 syslog-ng.h --- syslog-ng.h 2001/07/08 17:04:21 1.19 +++ syslog-ng.h 2001/07/17 09:32:07 @@ -34,7 +34,7 @@ #define PATH_SYSLOG_NG_CONF "syslog-ng.conf" #define PATH_PIDFILE "syslog-ng.pid" #else -#define PATH_SYSLOG_NG_CONF PATH_SYSCONFDIR "syslog-ng.conf" +#define PATH_SYSLOG_NG_CONF PATH_SYSCONFDIR "/syslog-ng.conf" #define PATH_PIDFILE "/var/run/syslog-ng.pid" #endif -- Bazsi PGP info: KeyID 9AF8D0A9 Fingerprint CD27 CFB0 802C 0944 9CFD 804E C82C 8EB1
participants (2)
-
Balazs Scheidler
-
Rolland, Yan