diff options
Diffstat (limited to '')
-rwxr-xr-x | tests/testsuites/omprog-defaults-bin.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/testsuites/omprog-defaults-bin.sh b/tests/testsuites/omprog-defaults-bin.sh new file mode 100755 index 0000000..f7d43c7 --- /dev/null +++ b/tests/testsuites/omprog-defaults-bin.sh @@ -0,0 +1,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 |