rsyslog/.shellcheck.yaml
Rainer Gerhards 69ef6e329b fix bad bash coding style and disable shellcheck false positives
Also now permit interactivly running tests without explicitly setting
$srcdir. This now works if we are inside ./tests and fails, as before,
when we are in a different directory.

Detected by shellcheck via CodeFactor.io
2018-10-23 13:27:37 +02:00

13 lines
406 B
YAML

ignored:
- SC2181 # we need support for old Solaris 10
- SC2016 # shellcheck does not properly understand our intent, the issue
# is raised e.g. here in config file creation:
# binary="'$RSYSLOG_DYNNAME'.omprog-restart-terminated-bin.sh"
# we cannot explicitely permit this on each occurence.
# things we do not (currently) care about
- SC2046
- SC2086
- SC2155
- SC2164