59 lines
2.2 KiB
Bash
Executable File
59 lines
2.2 KiB
Bash
Executable File
#!/bin/bash -e
|
|
python -m lifecycle.wait_for_db
|
|
printf '{"event": "Bootstrap completed", "level": "info", "logger": "bootstrap", "command": "%s"}\n' "$@" > /dev/stderr
|
|
|
|
function check_if_root {
|
|
if [[ $EUID -ne 0 ]]; then
|
|
printf '{"event": "Not running as root, disabling permission fixes", "level": "info", "logger": "bootstrap", "command": "%s"}\n' "$@" > /dev/stderr
|
|
$1
|
|
return
|
|
fi
|
|
SOCKET="/var/run/docker.sock"
|
|
GROUP="authentik"
|
|
if [[ -e "$SOCKET" ]]; then
|
|
# Get group ID of the docker socket, so we can create a matching group and
|
|
# add ourselves to it
|
|
DOCKER_GID=$(stat -c '%g' $SOCKET)
|
|
# Ensure group for the id exists
|
|
getent group $DOCKER_GID || groupadd -f -g $DOCKER_GID docker
|
|
usermod -a -G $DOCKER_GID authentik
|
|
# since the name of the group might not be docker, we need to lookup the group id
|
|
GROUP_NAME=$(getent group $DOCKER_GID | sed 's/:/\n/g' | head -1)
|
|
GROUP="authentik:${GROUP_NAME}"
|
|
fi
|
|
# Fix permissions of backups and media
|
|
chown -R authentik:authentik /media /backups
|
|
chpst -u authentik:$GROUP env HOME=/authentik $1
|
|
}
|
|
|
|
MODE_FILE="/tmp/authentik-mode"
|
|
|
|
if [[ "$1" == "server" ]]; then
|
|
echo "server" > $MODE_FILE
|
|
python -m lifecycle.migrate
|
|
/authentik-proxy
|
|
elif [[ "$1" == "worker" ]]; then
|
|
echo "worker" > $MODE_FILE
|
|
check_if_root "celery -A authentik.root.celery worker --autoscale 3,1 -E -B -s /tmp/celerybeat-schedule -Q authentik,authentik_scheduled,authentik_events"
|
|
elif [[ "$1" == "backup" ]]; then
|
|
python -m manage dbbackup --clean
|
|
elif [[ "$1" == "restore" ]]; then
|
|
python -m manage dbrestore ${@:2}
|
|
elif [[ "$1" == "bash" ]]; then
|
|
/bin/bash
|
|
elif [[ "$1" == "test" ]]; then
|
|
pip install --no-cache -r requirements-dev.txt
|
|
touch /unittest.xml
|
|
chown authentik:authentik /unittest.xml
|
|
check_if_root "python -m manage test authentik"
|
|
elif [[ "$1" == "healthcheck" ]]; then
|
|
mode=$(cat $MODE_FILE)
|
|
if [[ $mode == "server" ]]; then
|
|
curl --user-agent "goauthentik.io lifecycle Healthcheck" -I http://localhost:9000/-/health/ready/
|
|
elif [[ $mode == "worker" ]]; then
|
|
celery -A authentik.root.celery inspect ping -d celery@$HOSTNAME
|
|
fi
|
|
else
|
|
python -m manage "$@"
|
|
fi
|