Files
argo-cd/entrypoint.sh
2021-08-18 12:18:01 +02:00

10 lines
205 B
Bash
Executable File

#!/bin/bash
# If we're started as PID 1, we should wrap command execution through tini to
# prevent leakage of orphaned processes ("zombies").
if test "$$" = "1"; then
exec tini -- $@
else
exec "$@"
fi