blob: db01aadd1020d8c3cf0313705f6b277c7c0641ec (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#! /bin/bash
# Read a file and ignore another one from an old symlink
echo [imfile-ignore-old-file-7.sh]
. ${srcdir:=.}/diag.sh init
. $srcdir/diag.sh check-inotify
generate_conf
add_conf '
module(load="../plugins/imfile/.libs/imfile")
input(type="imfile"
File="./symlink/'$RSYSLOG_DYNNAME'.input.ignore3.*"
ignoreolderthan="86400"
Tag="file:"
ruleset="ruleset")
template(name="outfmt" type="string" string="%msg:F,58:2%\n")
ruleset(name="ruleset") {
action(type="omfile" file="'$RSYSLOG_OUT_LOG'" template="outfmt")
}
'
# create a log for testing
mkdir ./source
./inputfilegen -m 1000 > ./source/${RSYSLOG_DYNNAME}.input.ignore3.1
touch -m -t 201806010000.00 ./source/${RSYSLOG_DYNNAME}.input.ignore3.1
./inputfilegen -m 1000 -i 1000 > ./source/${RSYSLOG_DYNNAME}.input.ignore3.2
echo "source file date: "
ls -alth ./source/${RSYSLOG_DYNNAME}.input.ignore3.* #DEBUG
# create symlink
ln -sf ./source/ ./symlink
# apply old date to symlink
touch -h -t 201806010000.00 ./symlink
echo "symlink date"
ls -alth ./symlink #DEBUG
echo "File dates:"
ls -alth ./symlink/${RSYSLOG_DYNNAME}.input.ignore3.* #DEBUG
startup
# sleep a little to give rsyslog a chance to begin processing
./msleep 1000
# shut down rsyslogd when done processing messages
shutdown_when_empty
# we need to wait until rsyslogd is finished!
wait_shutdown
# check log file
seq_check 1000 1999
# cleanup
unlink ./symlink
rm -rf ./source
exit_test
|