diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-31 11:32:25 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-31 11:32:25 +0000 |
commit | 77358e12ab9c8a52c81673e24239d7878e7848c9 (patch) | |
tree | 2643e033ae06e51f182dd0d0d09f68e67e1ca0cb /rsyslog.conf | |
parent | 182c2cafceef701cfcd79e2a7994faa9fc5d4672 (diff) | |
download | rsyslog-77358e12ab9c8a52c81673e24239d7878e7848c9.tar.gz rsyslog-77358e12ab9c8a52c81673e24239d7878e7848c9.tar.xz rsyslog-77358e12ab9c8a52c81673e24239d7878e7848c9.zip |
- fixed bug in sample rsyslog.conf
- fixed wrong action suspend/resume handling
- we have some issue with the mutx in dbgoprint, but that is acceptable for
the time being, I just removed the deadlock codition (debug system
only)
Diffstat (limited to 'rsyslog.conf')
-rw-r--r-- | rsyslog.conf | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rsyslog.conf b/rsyslog.conf index 2740c794..2ff7d271 100644 --- a/rsyslog.conf +++ b/rsyslog.conf @@ -38,11 +38,12 @@ local7.* /var/log/boot.log # down, messages are spooled to disk and sent when it is up again. #$WorkDirectory /rsyslog/spool # where to place spool files #$ActionQueueFileName uniqName # unique name prefix for spool files -#$ActionQueueMaxDiskSpace 2g # 2gb space limit (use as much as possible) +#$ActionQueueMaxDiskSpace 1g # 1gb space limit (use as much as possible) #$ActionQueueSaveOnShutdown on # save messages to disk on shutdown #$ActionQueueType LinkedList # run asynchronously #$ActionResumeRetryCount -1 # infinety retries if host is down -#*.* @@remote-host # remote host is: name/ip:port +# remote host is: name/ip:port, e.g. 192.168.0.1:514, port optional +#*.* @@remote-host # ######### Receiving Messages from Remote Hosts ########## |