blob: 630807d4020e76eb16707ec47f6304c226a2e5e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# The client writes a message to Sys::Syslog native method.
# The syslogd writes it into a file and through a pipe.
# The syslogd -4 does not pass it via IPv6 UDP to the loghost.
# Find the message in client, file, pipe, syslogd log.
# Check that the syslogd logs the error.
use strict;
use warnings;
our %args = (
syslogd => {
loghost => '@udp6://[::1]',
loggrep => {
qr/syslogd: no udp6 "\@udp6:\/\/\[::1\]/ => 2, # XXX 2?
get_log() => 1,
},
options => ["-4"],
},
server => {
noserver => 1,
},
);
1;
|