diff --git a/ct/authelia.sh b/ct/authelia.sh index fbc2698fd..c51c00d10 100644 --- a/ct/authelia.sh +++ b/ct/authelia.sh @@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Source: https://www.authelia.com/ APP="Authelia" -TAGS="" +var_tags="${var_tags:-authenticator}" var_cpu="${var_cpu:-1}" var_ram="${var_ram:-512}" var_disk="${var_disk:-2}" @@ -25,7 +25,7 @@ function update_script() { header_info check_container_storage check_container_resources - if [[ ! -d "/etc/authelia/" ]]; then + if [[ ! -d /etc/authelia/ ]]; then msg_error "No ${APP} Installation Found!" exit fi diff --git a/ct/excalidraw.sh b/ct/excalidraw.sh index 44ac37ac9..2fdc5f0cf 100644 --- a/ct/excalidraw.sh +++ b/ct/excalidraw.sh @@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Source: https://github.com/excalidraw/excalidraw APP="Excalidraw" -TAGS="diagrams" +var_tags="${var_tags:-diagrams}" var_cpu="${var_cpu:-2}" var_ram="${var_ram:-3072}" var_disk="${var_disk:-10}" diff --git a/ct/graylog.sh b/ct/graylog.sh index 2116f05a9..0f12f6429 100644 --- a/ct/graylog.sh +++ b/ct/graylog.sh @@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Source: https://graylog.org/ APP="Graylog" -TAGS="logging" +var_tags="${var_tags:-logging}" var_cpu="${var_cpu:-2}" var_ram="${var_ram:-8192}" var_disk="${var_disk:-30}" @@ -54,4 +54,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}" \ No newline at end of file +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}" diff --git a/ct/hev-socks5-server.sh b/ct/hev-socks5-server.sh index 4fabd3a20..c81412535 100644 --- a/ct/hev-socks5-server.sh +++ b/ct/hev-socks5-server.sh @@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Source: https://github.com/heiher/hev-socks5-server APP="hev-socks5-server" -TAGS="proxy,socks5" +var_tags="${var_tags:-proxy;socks5}" var_cpu="${var_cpu:-1}" var_ram="${var_ram:-512}" var_disk="${var_disk:-2}" @@ -61,4 +61,4 @@ msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it with a SOCKS5 client using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}${IP}:1080${CL}" -echo -e "${INFO}${YW} and the credentials stored at /root/hev.creds${CL}" \ No newline at end of file +echo -e "${INFO}${YW} and the credentials stored at /root/hev.creds${CL}" diff --git a/ct/kometa.sh b/ct/kometa.sh index 49b0fb619..acd376484 100644 --- a/ct/kometa.sh +++ b/ct/kometa.sh @@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Source: https://github.com/Kometa-Team/Kometa APP="Kometa" -TAGS="media;streaming" +var_tags="${var_tags:-media;streaming}" var_cpu="${var_cpu:-2}" var_ram="${var_ram:-4096}" var_disk="${var_disk:-8}" diff --git a/ct/rustdeskserver.sh b/ct/rustdeskserver.sh index 4c27d2cea..ecd5c38a6 100644 --- a/ct/rustdeskserver.sh +++ b/ct/rustdeskserver.sh @@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Source: https://github.com/rustdesk/rustdesk-server APP="RustDesk Server" -TAGS="remote-desktop" +var_tags="${var_tags:-remote-desktop}" var_cpu="${var_cpu:-1}" var_ram="${var_ram:-512}" var_disk="${var_disk:-2}" diff --git a/ct/web-check.sh b/ct/web-check.sh index ab5382ae5..86adeaa6a 100644 --- a/ct/web-check.sh +++ b/ct/web-check.sh @@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV # Source: https://github.com/Lissy93/web-check APP="web-check" -var_tags="network;analysis" +var_tags="${var_tags:-network;analysis}" var_cpu="${var_cpu:-2}" var_ram="${var_ram:-2048}" var_disk="${var_disk:-12}"