[AudioBookshelf] Set to unsupported

This commit is contained in:
Sam Heinz
2024-04-12 17:44:30 +10:00
parent cc43e06cee
commit f8a82fe3d4
2 changed files with 65 additions and 63 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ Any applications not in ported or unsupported need to be tested for whether they
| Alpine Zigbee2mqtt | ☑️ || | Alpine Zigbee2mqtt | ☑️ ||
| Apache CouchDB | ☑️ || | Apache CouchDB | ☑️ ||
| APT Cacher NG | ☑️ || | APT Cacher NG | ☑️ ||
| Audiobookshelf | ❌ | Broken right now, working on fixing. | | Audiobookshelf | ❌ | Built for x64 only. |
| Autobrr | ☑️ || | Autobrr | ☑️ ||
| Bazarr | ☑️ || | Bazarr | ☑️ ||
| Blocky | ☑️ || | Blocky | ☑️ ||
+64 -62
View File
@@ -1,68 +1,70 @@
#!/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
function header_info { echo "Unsupported. View Compability table on GitHub."
clear
cat <<"EOF"
___ __ __ __ ______
____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/
/ __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_
/ /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/
\__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/
EOF # function header_info {
} # clear
header_info # cat <<"EOF"
echo -e "Loading..." # ___ __ __ __ ______
APP="audiobookshelf" # ____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/
var_disk="4" # / __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_
var_cpu="2" # / /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/
var_ram="2048" # \__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/
var_os="debian"
var_version="12"
variables
color
catch_errors
function default_settings() { # EOF
CT_TYPE="1" # }
PW="" # header_info
CT_ID=$NEXTID # echo -e "Loading..."
HN=$NSAPP # APP="audiobookshelf"
DISK_SIZE="$var_disk" # var_disk="4"
CORE_COUNT="$var_cpu" # var_cpu="2"
RAM_SIZE="$var_ram" # var_ram="2048"
BRG="vmbr0" # var_os="debian"
NET="dhcp" # var_version="12"
GATE="" # variables
APT_CACHER="" # color
APT_CACHER_IP="" # catch_errors
DISABLEIP6="no"
MTU=""
SD=""
NS=""
MAC=""
VLAN=""
SSH="no"
VERB="no"
echo_default
}
function update_script() { # function default_settings() {
header_info # CT_TYPE="1"
if [[ ! -f /etc/apt/trusted.gpg.d/audiobookshelf-ppa.asc ]]; then msg_error "No ${APP} Installation Found!"; exit; fi # PW=""
echo "This application receives updates through the APT package manager." # CT_ID=$NEXTID
exit # HN=$NSAPP
} # 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
# }
start # function update_script() {
build_container # header_info
description # if [[ ! -f /etc/apt/trusted.gpg.d/audiobookshelf-ppa.asc ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
# echo "This application receives updates through the APT package manager."
# exit
# }
msg_ok "Completed Successfully!\n" # start
echo -e "${APP} should be reachable by going to the following URL. # build_container
${BL}http://${IP}:13378${CL} \n" # description
# msg_ok "Completed Successfully!\n"
# echo -e "${APP} should be reachable by going to the following URL.
# ${BL}http://${IP}:13378${CL} \n"