From a347c9257384b4c8cf7194c98427695b07975483 Mon Sep 17 00:00:00 2001 From: rayvd Date: Wed, 16 Sep 2009 06:15:58 +0000 Subject: [PATCH] Missing files. --- rsyslog-3.14.1-logrotate.d-rsyslog.log | 6 +++ rsyslog-syslog-ng-fc10.sysconfig | 3 ++ rsyslog-syslog-ng.sysconfig | 3 ++ sysklogd-1.4.1-44-logrotate.d-syslog.log | 7 +++ sysklogd-1.4.1-logrotate.d-syslog.log | 6 +++ sysklogd-syslog-ng.sysconfig | 3 ++ syslog-ng.conf | 61 ++++++++++++++++++++++++ 7 files changed, 89 insertions(+) create mode 100644 rsyslog-3.14.1-logrotate.d-rsyslog.log create mode 100644 rsyslog-syslog-ng-fc10.sysconfig create mode 100644 rsyslog-syslog-ng.sysconfig create mode 100644 sysklogd-1.4.1-44-logrotate.d-syslog.log create mode 100644 sysklogd-1.4.1-logrotate.d-syslog.log create mode 100644 sysklogd-syslog-ng.sysconfig create mode 100644 syslog-ng.conf diff --git a/rsyslog-3.14.1-logrotate.d-rsyslog.log b/rsyslog-3.14.1-logrotate.d-rsyslog.log new file mode 100644 index 0000000..e0593a2 --- /dev/null +++ b/rsyslog-3.14.1-logrotate.d-rsyslog.log @@ -0,0 +1,6 @@ +/var/log/messages /var/log/secure /var/log/maillog /var/log/spooler /var/log/boot.log /var/log/cron { + sharedscripts + postrotate + /bin/kill -HUP `cat /var/run/rsyslogd.pid 2> /dev/null` 2> /dev/null || true + endscript +} diff --git a/rsyslog-syslog-ng-fc10.sysconfig b/rsyslog-syslog-ng-fc10.sysconfig new file mode 100644 index 0000000..f0c36b0 --- /dev/null +++ b/rsyslog-syslog-ng-fc10.sysconfig @@ -0,0 +1,3 @@ +SYSLOGNG_PID="/var/run/syslog-ng.pid" +SYSLOGNG_OPTIONS="-p $SYSLOGNG_PID" +SYSLOGNG_COMPAT_PID="/var/run/syslogd.pid" diff --git a/rsyslog-syslog-ng.sysconfig b/rsyslog-syslog-ng.sysconfig new file mode 100644 index 0000000..3ab2430 --- /dev/null +++ b/rsyslog-syslog-ng.sysconfig @@ -0,0 +1,3 @@ +SYSLOGNG_PID="/var/run/syslog-ng.pid" +SYSLOGNG_OPTIONS="-p $SYSLOGNG_PID" +SYSLOGNG_COMPAT_PID="/var/run/rsyslogd.pid" diff --git a/sysklogd-1.4.1-44-logrotate.d-syslog.log b/sysklogd-1.4.1-44-logrotate.d-syslog.log new file mode 100644 index 0000000..5e94409 --- /dev/null +++ b/sysklogd-1.4.1-44-logrotate.d-syslog.log @@ -0,0 +1,7 @@ +/var/log/messages /var/log/secure /var/log/maillog /var/log/spooler /var/log/boot.log /var/log/cron { + sharedscripts + postrotate + /bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true + /bin/kill -HUP `cat /var/run/rsyslogd.pid 2> /dev/null` 2> /dev/null || true + endscript +} diff --git a/sysklogd-1.4.1-logrotate.d-syslog.log b/sysklogd-1.4.1-logrotate.d-syslog.log new file mode 100644 index 0000000..b2d41f1 --- /dev/null +++ b/sysklogd-1.4.1-logrotate.d-syslog.log @@ -0,0 +1,6 @@ +/var/log/messages /var/log/secure /var/log/maillog /var/log/spooler /var/log/boot.log /var/log/cron { + sharedscripts + postrotate + /bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true + endscript +} diff --git a/sysklogd-syslog-ng.sysconfig b/sysklogd-syslog-ng.sysconfig new file mode 100644 index 0000000..f0c36b0 --- /dev/null +++ b/sysklogd-syslog-ng.sysconfig @@ -0,0 +1,3 @@ +SYSLOGNG_PID="/var/run/syslog-ng.pid" +SYSLOGNG_OPTIONS="-p $SYSLOGNG_PID" +SYSLOGNG_COMPAT_PID="/var/run/syslogd.pid" diff --git a/syslog-ng.conf b/syslog-ng.conf new file mode 100644 index 0000000..d5d554e --- /dev/null +++ b/syslog-ng.conf @@ -0,0 +1,61 @@ +# syslog-ng configuration file. +# +# This should behave pretty much like the original syslog on RedHat. But +# it could be configured a lot smarter. +# +# See syslog-ng(8) and syslog-ng.conf(5) for more information. +# + +options { + sync (0); + time_reopen (10); + log_fifo_size (1000); + long_hostnames (off); + use_dns (no); + use_fqdn (no); + create_dirs (no); + keep_hostname (yes); +}; + +source s_sys { + file ("/proc/kmsg" log_prefix("kernel: ")); + unix-stream ("/dev/log"); + internal(); + # udp(ip(0.0.0.0) port(514)); +}; + +destination d_cons { file("/dev/console"); }; +destination d_mesg { file("/var/log/messages"); }; +destination d_auth { file("/var/log/secure"); }; +destination d_mail { file("/var/log/maillog" sync(10)); }; +destination d_spol { file("/var/log/spooler"); }; +destination d_boot { file("/var/log/boot.log"); }; +destination d_cron { file("/var/log/cron"); }; +destination d_kern { file("/var/log/kern"); }; +destination d_mlal { usertty("*"); }; + +filter f_kernel { facility(kern); }; +filter f_default { level(info..emerg) and + not (facility(mail) + or facility(authpriv) + or facility(cron)); }; +filter f_auth { facility(authpriv); }; +filter f_mail { facility(mail); }; +filter f_emergency { level(emerg); }; +filter f_news { facility(uucp) or + (facility(news) + and level(crit..emerg)); }; +filter f_boot { facility(local7); }; +filter f_cron { facility(cron); }; + +#log { source(s_sys); filter(f_kernel); destination(d_cons); }; +log { source(s_sys); filter(f_kernel); destination(d_kern); }; +log { source(s_sys); filter(f_default); destination(d_mesg); }; +log { source(s_sys); filter(f_auth); destination(d_auth); }; +log { source(s_sys); filter(f_mail); destination(d_mail); }; +log { source(s_sys); filter(f_emergency); destination(d_mlal); }; +log { source(s_sys); filter(f_news); destination(d_spol); }; +log { source(s_sys); filter(f_boot); destination(d_boot); }; +log { source(s_sys); filter(f_cron); destination(d_cron); }; + +# vim:ft=syslog-ng:ai:si:ts=4:sw=4:et: