diff options
author | Cy Schubert <cy@FreeBSD.org> | 2011-10-02 04:05:51 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2011-10-02 04:05:51 +0000 |
commit | 098d07eb741f280b9d7da40cbbdc1d5a1294f072 (patch) | |
tree | 73537e4a68750ef52771c79ec20e4fe1e855933f /sysutils/syslog-ng/files/syslog-ng.conf.sample | |
parent | Deprecate syslog-ng1 and expire on Nov 1, 2011. (diff) |
Update (replace) syslog-ng version 1 with syslog-ng version 3.
Previous history for syslog-ng version 3 can be found in sysutils/syslog-ng3.
Suggested by: syslog-ng upline and syslog-ng version 1 maintainer.
Approved by: syslog-ng version 1 maintainer and syslog-ng version 3 maintainer
Notes
Notes:
svn path=/head/; revision=282776
Diffstat (limited to 'sysutils/syslog-ng/files/syslog-ng.conf.sample')
-rw-r--r-- | sysutils/syslog-ng/files/syslog-ng.conf.sample | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysutils/syslog-ng/files/syslog-ng.conf.sample b/sysutils/syslog-ng/files/syslog-ng.conf.sample index c2059c4165db..a58743dad624 100644 --- a/sysutils/syslog-ng/files/syslog-ng.conf.sample +++ b/sysutils/syslog-ng/files/syslog-ng.conf.sample @@ -1,3 +1,5 @@ +@version:3.2 + # # This sample configuration file is essentially equilivent to the stock # FreeBSD /etc/syslog.conf file. @@ -6,7 +8,7 @@ # # options # -options { long_hostnames(off); sync(0); }; +options { long_hostnames(off); flush_lines(0); }; # # sources @@ -43,7 +45,7 @@ destination allusers { usertty("*"); }; filter f_auth { facility(auth); }; filter f_authpriv { facility(authpriv); }; filter f_not_authpriv { not facility(authpriv); }; -filter f_console { facility(console); }; +#filter f_console { facility(console); }; filter f_cron { facility(cron); }; filter f_daemon { facility(daemon); }; filter f_ftp { facility(ftp); }; |