mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-17 22:10:41 +01:00
When no variables exist and a variable with at least one variable in its path was used, then rsyslog was searching for that non existant variable Rsyslog now aborts it when no variables exist. closes https://github.com/rsyslog/rsyslog/issues/1920
14 lines
335 B
Bash
Executable File
14 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
# add 2017-10-30 by PascalWithopf, released under ASL 2.0
|
|
#tests for Segmentation Fault
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh generate-conf
|
|
. $srcdir/diag.sh add-conf '
|
|
#set $!r = $!var1!var3!var2;
|
|
'
|
|
. $srcdir/diag.sh startup
|
|
. $srcdir/diag.sh shutdown-when-empty
|
|
. $srcdir/diag.sh wait-shutdown
|
|
|
|
. $srcdir/diag.sh exit
|