blob: a7079df150c0444a01cd99a7424598316eeff74d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# we write to /dev/null, as we have no chance to verify the output
# in any case. What we really check is that rsyslogd does not
# segfault or otherwise abort.
# rgerhards, 2010-04-01
$IncludeConfig diag-common.conf
$ModLoad ../plugins/imtcp/.libs/imtcp
$MainMsgQueueTimeoutShutdown 10000
$InputTCPServerRun 13514
$template outfmt,"%rawmsg%\n"
$template dynfile,"rsyslog.out.log" # trick to use relative path names!
*.* /dev/null
|