apply new default value format

This commit is contained in:
CrazyWolf13 2025-05-06 06:59:46 +02:00
parent 3be09e5f66
commit dc289bf882

View File

@ -5,15 +5,14 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE # License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/CrazyWolf13/streamlink-webui # Source: https://github.com/CrazyWolf13/streamlink-webui
# App Default Values
APP="streamlink-webui" APP="streamlink-webui"
var_tags="download;streaming" var_tags="${var_tags:-download,streaming}"
var_cpu="2" var_cpu="${var_cpu:-2}"
var_ram="2048" var_ram="${var_ram:-2048}"
var_disk="5" var_disk="${var_disk:-10}"
var_os="debian" var_os="${var_os:-debian}"
var_version="12" var_version="${var_version:-12}"
var_unprivileged="1" var_unprivileged="${var_unprivileged:-1}"
header_info "$APP" header_info "$APP"
variables variables