lifecycle: fix syntax error in ak wrapper
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
62bf79ce32
commit
b0f7083879
|
@ -48,7 +48,7 @@ elif [[ "$1" == "test" ]]; then
|
||||||
check_if_root "python -m manage test authentik"
|
check_if_root "python -m manage test authentik"
|
||||||
elif [[ "$1" == "healthcheck" ]]; then
|
elif [[ "$1" == "healthcheck" ]]; then
|
||||||
mode=$(cat $MODE_FILE)
|
mode=$(cat $MODE_FILE)
|
||||||
if [[ $mode == "server "]]; then
|
if [[ $mode == "server" ]]; then
|
||||||
curl --user-agent "authentik Healthcheck" -I http://localhost:9000/-/health/ready/
|
curl --user-agent "authentik Healthcheck" -I http://localhost:9000/-/health/ready/
|
||||||
elif [[ $mode == "worker" ]]; then
|
elif [[ $mode == "worker" ]]; then
|
||||||
celery -A authentik.root.celery inspect ping -d celery@$HOSTNAME
|
celery -A authentik.root.celery inspect ping -d celery@$HOSTNAME
|
||||||
|
|
Reference in New Issue