You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
294 B
12 lines
294 B
9 months ago
|
#!/usr/bin/with-contenv bash
|
||
|
# notify the sidecar of imminent shutdown
|
||
|
PORT=${AUTOSCALER_SIDECAR_PORT:-6000}
|
||
|
curl -d '{}' -v 0:$PORT/hook/v1/shutdown
|
||
|
sleep 10
|
||
|
|
||
|
# signal jibri to shutdown via rest api
|
||
|
/opt/jitsi/jibri/shutdown.sh
|
||
|
|
||
|
# shutdown everything else
|
||
|
s6-svscanctl -t /var/run/s6/services
|