diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-10-09 19:10:54 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-10-09 19:11:37 +0200 |
commit | 2ede930eec0aceb292687351ed520784c060380c (patch) | |
tree | c39fc7af9a23a529d2ef3256816bb5305bbef379 /scripts | |
parent | 4654faf38128f4e793d654c78eee3c5b8d226bbf (diff) |
daemon.sh: cat nDPId / nDPIsrvd log on failure
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/daemon.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/daemon.sh b/scripts/daemon.sh index 5312ffa85..35dd08e83 100755 --- a/scripts/daemon.sh +++ b/scripts/daemon.sh @@ -55,4 +55,9 @@ else test ${RETVAL} -eq 0 && printf '%s\n' "You may now run examples e.g.: $(realpath --relative-to="$(pwd)" $(dirname "${0}")/../examples/py-flow-info/flow-info.py) --unix ${NROOT}/nDPIsrvd-${NSUFFIX}-distributor.sock" fi +if [ ${RETVAL} -ne 0 ]; then + test -r "${NROOT}/nDPIsrvd.log" && cat "${NROOT}/nDPIsrvd.log" + test -r "${NROOT}/nDPId.log" && cat "${NROOT}/nDPId.log" +fi + exit ${RETVAL} |