Browse Source

SyslogNG Konfig

pull/1/head
Marc Schoechlin 12 years ago
parent
commit
f5de870978
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      README.md

+ 6
- 0
README.md View File

@ -150,6 +150,12 @@ The logged information can also be forwarded to secured logging servers using st
* If you like:
* Disable string escaping on system which are using rsyslogd (i.e. Ubuntu systems with rsyslogd)
* Redirect the auditshell logs to another logfile using syslog configuration
* Syslog-NG
```bash
filter f_auditshell { match('^auditshell'); };
destination auditshell { file("/var/log/auditshell"); };
log { source(src); filter(f_auditshell); destination(auditshell); };
```
* Change shell of user
```bash


Loading…
Cancel
Save