Skip to content

Commit ab38031

Browse files
authored
Fix tag vars (#8182)
1 parent 5b23ef6 commit ab38031

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

ct/authelia.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
66
# Source: https://www.authelia.com/
77

88
APP="Authelia"
9-
TAGS=""
9+
var_tags="${var_tags:-authenticator}"
1010
var_cpu="${var_cpu:-1}"
1111
var_ram="${var_ram:-512}"
1212
var_disk="${var_disk:-2}"
@@ -25,7 +25,7 @@ function update_script() {
2525
header_info
2626
check_container_storage
2727
check_container_resources
28-
if [[ ! -d "/etc/authelia/" ]]; then
28+
if [[ ! -d /etc/authelia/ ]]; then
2929
msg_error "No ${APP} Installation Found!"
3030
exit
3131
fi

ct/excalidraw.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
66
# Source: https://github.com/excalidraw/excalidraw
77

88
APP="Excalidraw"
9-
TAGS="diagrams"
9+
var_tags="${var_tags:-diagrams}"
1010
var_cpu="${var_cpu:-2}"
1111
var_ram="${var_ram:-3072}"
1212
var_disk="${var_disk:-10}"

ct/graylog.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
66
# Source: https://graylog.org/
77

88
APP="Graylog"
9-
TAGS="logging"
9+
var_tags="${var_tags:-logging}"
1010
var_cpu="${var_cpu:-2}"
1111
var_ram="${var_ram:-8192}"
1212
var_disk="${var_disk:-30}"
@@ -54,4 +54,4 @@ description
5454
msg_ok "Completed Successfully!\n"
5555
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
5656
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
57-
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}"
57+
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}"

ct/hev-socks5-server.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
66
# Source: https://github.com/heiher/hev-socks5-server
77

88
APP="hev-socks5-server"
9-
TAGS="proxy,socks5"
9+
var_tags="${var_tags:-proxy;socks5}"
1010
var_cpu="${var_cpu:-1}"
1111
var_ram="${var_ram:-512}"
1212
var_disk="${var_disk:-2}"
@@ -61,4 +61,4 @@ msg_ok "Completed Successfully!\n"
6161
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
6262
echo -e "${INFO}${YW} Access it with a SOCKS5 client using the following URL:${CL}"
6363
echo -e "${TAB}${GATEWAY}${BGN}${IP}:1080${CL}"
64-
echo -e "${INFO}${YW} and the credentials stored at /root/hev.creds${CL}"
64+
echo -e "${INFO}${YW} and the credentials stored at /root/hev.creds${CL}"

ct/kometa.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
66
# Source: https://github.com/Kometa-Team/Kometa
77

88
APP="Kometa"
9-
TAGS="media;streaming"
9+
var_tags="${var_tags:-media;streaming}"
1010
var_cpu="${var_cpu:-2}"
1111
var_ram="${var_ram:-4096}"
1212
var_disk="${var_disk:-8}"

ct/rustdeskserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
66
# Source: https://github.com/rustdesk/rustdesk-server
77

88
APP="RustDesk Server"
9-
TAGS="remote-desktop"
9+
var_tags="${var_tags:-remote-desktop}"
1010
var_cpu="${var_cpu:-1}"
1111
var_ram="${var_ram:-512}"
1212
var_disk="${var_disk:-2}"

ct/web-check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
66
# Source: https://github.com/Lissy93/web-check
77

88
APP="web-check"
9-
var_tags="network;analysis"
9+
var_tags="${var_tags:-network;analysis}"
1010
var_cpu="${var_cpu:-2}"
1111
var_ram="${var_ram:-2048}"
1212
var_disk="${var_disk:-12}"

0 commit comments

Comments
 (0)