Fix comments and variable initialization in authentik.sh

This commit is contained in:
thieneret 2026-02-22 09:19:36 +01:00 committed by GitHub
parent c57bc93631
commit e72cf6624c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,18 @@
#!/usr/bin/env bash #!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/thieneret/ProxmoxVED/feat/authentik/misc/build.func) source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG # Copyright (c) 2021-2026 community-scripts ORG
# Author: Thieneret # Author: Thieneret
# License: MIT | https://github.com/thieneret/ProxmoxVED/raw/main/LICENSE # License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/goauthentik/authentik # Source: https://github.com/goauthentik/authentik
APP="authentik" APP="authentik"
var_tags="auth" var_tags="${var_tags:-auth}"
var_cpu="4" var_cpu="${var_cpu:-4}"
var_ram="4096" var_ram="${var_ram:-4096}"
var_disk="10" var_disk="${var_disk:-10}"
var_os="debian" var_os="${var_os:-debian}"
var_version="13" var_version="${var_version:-13}"
var_unprivileged="1" var_unprivileged="${var_unprivileged:-1}"
header_info "$APP" header_info "$APP"
variables variables
@ -28,7 +28,7 @@ function update_script() {
NODE_VERSION="24" NODE_VERSION="24"
if [[ ! -d /opt/authentik ]]; then if [[ ! -d /opt/authentik ]]; then
msg_error "No ${APP} Installation Found!" msg_error "No authentik Installation Found!"
exit exit
fi fi