forked from forkanization/Proxmox-arm64
[AudioBookshelf] Set to unsupported
This commit is contained in:
@@ -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
@@ -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"
|
# function header_info {
|
||||||
___ __ __ __ ______
|
# clear
|
||||||
____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/
|
# cat <<"EOF"
|
||||||
/ __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_
|
# ___ __ __ __ ______
|
||||||
/ /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/
|
# ____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/
|
||||||
\__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/
|
# / __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_
|
||||||
|
# / /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/
|
||||||
|
# \__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/
|
||||||
|
|
||||||
EOF
|
# EOF
|
||||||
}
|
# }
|
||||||
header_info
|
# header_info
|
||||||
echo -e "Loading..."
|
# echo -e "Loading..."
|
||||||
APP="audiobookshelf"
|
# APP="audiobookshelf"
|
||||||
var_disk="4"
|
# var_disk="4"
|
||||||
var_cpu="2"
|
# var_cpu="2"
|
||||||
var_ram="2048"
|
# var_ram="2048"
|
||||||
var_os="debian"
|
# var_os="debian"
|
||||||
var_version="12"
|
# var_version="12"
|
||||||
variables
|
# variables
|
||||||
color
|
# color
|
||||||
catch_errors
|
# catch_errors
|
||||||
|
|
||||||
function default_settings() {
|
# function default_settings() {
|
||||||
CT_TYPE="1"
|
# CT_TYPE="1"
|
||||||
PW=""
|
# PW=""
|
||||||
CT_ID=$NEXTID
|
# CT_ID=$NEXTID
|
||||||
HN=$NSAPP
|
# HN=$NSAPP
|
||||||
DISK_SIZE="$var_disk"
|
# DISK_SIZE="$var_disk"
|
||||||
CORE_COUNT="$var_cpu"
|
# CORE_COUNT="$var_cpu"
|
||||||
RAM_SIZE="$var_ram"
|
# RAM_SIZE="$var_ram"
|
||||||
BRG="vmbr0"
|
# BRG="vmbr0"
|
||||||
NET="dhcp"
|
# NET="dhcp"
|
||||||
GATE=""
|
# GATE=""
|
||||||
APT_CACHER=""
|
# APT_CACHER=""
|
||||||
APT_CACHER_IP=""
|
# APT_CACHER_IP=""
|
||||||
DISABLEIP6="no"
|
# DISABLEIP6="no"
|
||||||
MTU=""
|
# MTU=""
|
||||||
SD=""
|
# SD=""
|
||||||
NS=""
|
# NS=""
|
||||||
MAC=""
|
# MAC=""
|
||||||
VLAN=""
|
# VLAN=""
|
||||||
SSH="no"
|
# SSH="no"
|
||||||
VERB="no"
|
# VERB="no"
|
||||||
echo_default
|
# echo_default
|
||||||
}
|
# }
|
||||||
|
|
||||||
function update_script() {
|
# function update_script() {
|
||||||
header_info
|
# header_info
|
||||||
if [[ ! -f /etc/apt/trusted.gpg.d/audiobookshelf-ppa.asc ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
# 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."
|
# echo "This application receives updates through the APT package manager."
|
||||||
exit
|
# exit
|
||||||
}
|
# }
|
||||||
|
|
||||||
start
|
# start
|
||||||
build_container
|
# build_container
|
||||||
description
|
# description
|
||||||
|
|
||||||
msg_ok "Completed Successfully!\n"
|
# msg_ok "Completed Successfully!\n"
|
||||||
echo -e "${APP} should be reachable by going to the following URL.
|
# echo -e "${APP} should be reachable by going to the following URL.
|
||||||
${BL}http://${IP}:13378${CL} \n"
|
# ${BL}http://${IP}:13378${CL} \n"
|
||||||
|
|||||||
Reference in New Issue
Block a user