feat(package): sentinèlla: add auth

This commit is contained in:
2025-10-03 02:30:24 +00:00
parent 0eb95197bc
commit 7fd3ba46c9
10 changed files with 346 additions and 186 deletions

View File

@@ -0,0 +1,10 @@
{ writeShellScriptBin, socat, dash }:
writeShellScriptBin "server-health" ''
set +a
LOOP_FILE=${./probe-loop.sh}
socat() { ${socat}/bin/socat $@ }
dash() { ${dash}/bin/dash $@ }
set -a
${dash}/bin/dash ${./probe.sh}
''