You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
205 B
Bash
9 lines
205 B
Bash
3 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
# tell tini that it's a subreaper if we're exec'ing in
|
||
|
if [ "$$" -ne 1 ]; then
|
||
|
export TINI_SUBREAPER=true
|
||
|
fi
|
||
|
|
||
|
# -g: Send signals to the child's process group.
|
||
|
exec tini -g -- "$@"
|