summaryrefslogtreecommitdiffstats
path: root/tests/testsuites/omprog-defaults-bin.sh
blob: f7d43c7e48050527a57dad0f323c1a0ba4f2363e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

outfile=$RSYSLOG_OUT_LOG

echo "Starting with parameters: $@" >> $outfile

read log_line
while [[ -n "$log_line" ]]; do
    echo "Received $log_line" >> $outfile
    read log_line
done

echo "Terminating normally" >> $outfile
exit 0