9 lines
176 B
Bash
9 lines
176 B
Bash
#!/command/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
if [ $ONE_SHOT == "true" ]; then
|
|
|
|
# Cleanly kill container by sending kill signal to supervisor process
|
|
kill 1
|
|
|
|
fi |