forked from forkanization/Proxmox-arm64
Add PBS unsupported notice
This commit is contained in:
@@ -49,7 +49,7 @@ Any applications not in ported or unsupported need to be tested for whether they
|
|||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>Unsupported applications</summary>
|
<summary>Unsupported applications</summary>
|
||||||
<li>None yet</li>
|
<li>Proxmox Backup Server - Needs custom image</li>
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
|||||||
@@ -1,72 +1,73 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
|
# source <(curl -s https://raw.githubusercontent.com/tteck/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 Currently unsupported
|
||||||
clear
|
# function header_info {
|
||||||
cat <<"EOF"
|
# clear
|
||||||
____ ____ __ _____
|
# cat <<"EOF"
|
||||||
/ __ \_________ _ ______ ___ ____ _ __ / __ )____ ______/ /____ ______ / ___/___ ______ _____ _____
|
# ____ ____ __ _____
|
||||||
/ /_/ / ___/ __ \| |/_/ __ `__ \/ __ \| |/_/ / __ / __ `/ ___/ //_/ / / / __ \ \__ \/ _ \/ ___/ | / / _ \/ ___/
|
# / __ \_________ _ ______ ___ ____ _ __ / __ )____ ______/ /____ ______ / ___/___ ______ _____ _____
|
||||||
/ ____/ / / /_/ /> </ / / / / / /_/ /> < / /_/ / /_/ / /__/ ,< / /_/ / /_/ / ___/ / __/ / | |/ / __/ /
|
# / /_/ / ___/ __ \| |/_/ __ `__ \/ __ \| |/_/ / __ / __ `/ ___/ //_/ / / / __ \ \__ \/ _ \/ ___/ | / / _ \/ ___/
|
||||||
/_/ /_/ \____/_/|_/_/ /_/ /_/\____/_/|_| /_____/\__,_/\___/_/|_|\__,_/ .___/ /____/\___/_/ |___/\___/_/
|
# / ____/ / / /_/ /> </ / / / / / /_/ /> < / /_/ / /_/ / /__/ ,< / /_/ / /_/ / ___/ / __/ / | |/ / __/ /
|
||||||
/_/
|
# /_/ /_/ \____/_/|_/_/ /_/ /_/\____/_/|_| /_____/\__,_/\___/_/|_|\__,_/ .___/ /____/\___/_/ |___/\___/_/
|
||||||
EOF
|
# /_/
|
||||||
}
|
# EOF
|
||||||
header_info
|
# }
|
||||||
echo -e "Loading..."
|
# header_info
|
||||||
APP="PBS"
|
# echo -e "Loading..."
|
||||||
var_disk="10"
|
# APP="PBS"
|
||||||
var_cpu="2"
|
# var_disk="10"
|
||||||
var_ram="2048"
|
# var_cpu="2"
|
||||||
var_os="debian"
|
# var_ram="2048"
|
||||||
var_version="12"
|
# var_os="debian"
|
||||||
variables
|
# var_version="12"
|
||||||
color
|
# variables
|
||||||
catch_errors
|
# color
|
||||||
|
# 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 [[ ! -d /var ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
# if [[ ! -d /var ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
||||||
msg_info "Updating $APP LXC"
|
# msg_info "Updating $APP LXC"
|
||||||
apt-get update &>/dev/null
|
# apt-get update &>/dev/null
|
||||||
apt-get -y upgrade &>/dev/null
|
# apt-get -y upgrade &>/dev/null
|
||||||
msg_ok "Updated $APP LXC"
|
# msg_ok "Updated $APP LXC"
|
||||||
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}:8007${CL} \n"
|
# ${BL}http://${IP}:8007${CL} \n"
|
||||||
|
|||||||
Reference in New Issue
Block a user