From dd288c4d8a2d94764e6eaff44353fcfb13484154 Mon Sep 17 00:00:00 2001 From: Doug Goldstein Date: Wed, 22 May 2024 21:38:35 -0500 Subject: [PATCH] fix: dnsmasq debug dump to stderr Instead of having a race between stdout/stderr in the entry-point, just output everything to stderr. --- containers/dnsmasq/entry-point.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/dnsmasq/entry-point.sh b/containers/dnsmasq/entry-point.sh index 01ea4ac0f..15866e26f 100644 --- a/containers/dnsmasq/entry-point.sh +++ b/containers/dnsmasq/entry-point.sh @@ -11,7 +11,7 @@ mkdir -p /etc/dnsmasq.d/optsdir.d render_j2_file /etc/dnsmasq.conf.j2 /etc/dnsmasq.conf if [ -n "${DEBUG_DNSMASQ_CONF+x}" ]; then - cat /etc/dnsmasq.conf + cat /etc/dnsmasq.conf >&2 fi /usr/sbin/dnsmasq --test