8 lines
100 B
Bash
Executable File
8 lines
100 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -f "/app/health" ]; then
|
|
printf 0 > "/app/health"
|
|
fi
|
|
|
|
exit "$(cat /app/health)"
|