https://github.com/argoproj/argo-cd
Raw File
Tip revision: 9a0c52ed82f5071fd3d706c3b14189fa8825da5b authored by Mathias Petermann on 26 October 2023, 14:51:19 UTC
sibling of 752004c8705578b450e04129a13f319a874b940b
Tip revision: 9a0c52e
entrypoint.sh
#!/bin/sh

# 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
back to top