unbound: fix healthcheck logging + added fail tolerance to checks (#6004)

* unbound: fix healthcheck logging to stdout + rewrote healthcheck logic

* compose: bump unbound tag

* unbound: fixed healthcheck logic
This commit is contained in:
Niklas Meyer
2024-08-13 15:59:57 +02:00
committed by GitHub
parent b1c1e403d2
commit b26ccc2019
6 changed files with 152 additions and 56 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
printf "READY\n";
while read line; do
echo "Processing Event: $line" >&2;
kill -3 $(cat "/var/run/supervisord.pid")
done < /dev/stdin
rm -rf /tmp/healthcheck_status