~ubuntu-branches/ubuntu/gutsy/syslog-ng/gutsy-security

« back to all changes in this revision

Viewing changes to contrib/syslog-ng.conf.doc

  • Committer: Bazaar Package Importer
  • Author(s): SZALAY Attila
  • Date: 2005-06-09 20:10:54 UTC
  • mfrom: (1.1.3 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050609201054-gpuo1bz4xv33edld
Tags: 1.6.8-1
* New upstream version.
* Debian patch cleaned up. If something needed dropped out please tell me!
* Create /dev/xconsole if not exists. (Closes: #312690)
* Check the config file for syntax errors before reload. (Closes: #294888)
* Fixed a typo in syslog-ng.conf (Closes: #312114)
* Created a directory. Put debian specific patches into it.
* Added the new version of syslog-ng-annon patch. (Closes: #303808)

Show diffs side-by-side

added added

removed removed

Lines of Context:
283
283
#  source src 
284
284
#    {
285
285
#      internal();
286
 
#      pipe("/proc/kmsg" log_prefix("kernel: "));
 
286
#      file("/proc/kmsg" log_prefix("kernel: "));
287
287
#      tcp(ip(127.0.0.1) port(4800) keep-alive(yes));
288
288
#      udp();
289
289
#      unix-stream("/dev/log");
304
304
  { internal(); };
305
305
 
306
306
source s_kernel
307
 
  { pipe("/proc/kmsg" log_prefix("kernel: ")); };
 
307
  { file("/proc/kmsg" log_prefix("kernel: ")); };
308
308
 
309
309
source s_tcp
310
310
  { tcp(port(4800) keep-alive(yes) max_connections(100)); };