Remove unsupported notice from Audiobookshelf

This commit is contained in:
Sam Heinz
2024-06-07 10:32:51 +10:00
parent a0526ca432
commit 50fff01e17
+62 -64
View File
@@ -1,70 +1,68 @@
# #!/usr/bin/env bash #!/usr/bin/env bash
# source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func) source <(curl -s https://raw.githubusercontent.com/asylumexp/Proxmox/main/misc/build.func)
# # Copyright (c) 2021-2024 tteck # Copyright (c) 2021-2024 tteck
# # Author: tteck (tteckster) # Author: tteck (tteckster)
# # License: MIT # License: MIT
# # https://github.com/tteck/Proxmox/raw/main/LICENSE # https://github.com/tteck/Proxmox/raw/main/LICENSE
echo "Unsupported. View notes on GitHub." function header_info {
clear
cat <<"EOF"
___ __ __ __ ______
____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/
/ __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_
/ /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/
\__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/
# function header_info { EOF
# clear }
# cat <<"EOF" header_info
# ___ __ __ __ ______ echo -e "Loading..."
# ____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/ APP="audiobookshelf"
# / __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_ var_disk="4"
# / /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/ var_cpu="2"
# \__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/ var_ram="2048"
var_os="debian"
var_version="12"
variables
color
catch_errors
# EOF function default_settings() {
# } CT_TYPE="1"
# header_info PW=""
# echo -e "Loading..." CT_ID=$NEXTID
# APP="audiobookshelf" HN=$NSAPP
# var_disk="4" DISK_SIZE="$var_disk"
# var_cpu="2" CORE_COUNT="$var_cpu"
# var_ram="2048" RAM_SIZE="$var_ram"
# var_os="debian" BRG="vmbr0"
# var_version="12" NET="dhcp"
# variables GATE=""
# color APT_CACHER=""
# catch_errors APT_CACHER_IP=""
DISABLEIP6="no"
MTU=""
SD=""
NS=""
MAC=""
VLAN=""
SSH="no"
VERB="no"
echo_default
}
# function default_settings() { function update_script() {
# CT_TYPE="1" header_info
# PW="" if [[ ! -f /etc/apt/trusted.gpg.d/audiobookshelf-ppa.asc ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
# CT_ID=$NEXTID echo "This application receives updates through the APT package manager."
# HN=$NSAPP exit
# DISK_SIZE="$var_disk" }
# CORE_COUNT="$var_cpu"
# RAM_SIZE="$var_ram"
# BRG="vmbr0"
# NET="dhcp"
# GATE=""
# APT_CACHER=""
# APT_CACHER_IP=""
# DISABLEIP6="no"
# MTU=""
# SD=""
# NS=""
# MAC=""
# VLAN=""
# SSH="no"
# VERB="no"
# echo_default
# }
# function update_script() { start
# header_info build_container
# if [[ ! -f /etc/apt/trusted.gpg.d/audiobookshelf-ppa.asc ]]; then msg_error "No ${APP} Installation Found!"; exit; fi description
# echo "This application receives updates through the APT package manager."
# exit
# }
# start msg_ok "Completed Successfully!\n"
# build_container echo -e "${APP} should be reachable by going to the following URL.
# description ${BL}http://${IP}:13378${CL} \n"
# msg_ok "Completed Successfully!\n"
# echo -e "${APP} should be reachable by going to the following URL.
# ${BL}http://${IP}:13378${CL} \n"