mirror of https://github.com/tteck/Proxmox.git
86 lines
1.8 KiB
Bash
86 lines
1.8 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func)
|
|
# Copyright (c) 2021-2024 tteck
|
|
# Author: tteck
|
|
# Co-Author: havardthom
|
|
# License: MIT
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
|
|
|
function header_info {
|
|
clear
|
|
cat <<"EOF"
|
|
____ _ __ __ __ ______
|
|
/ __ \____ ___ ____ | | / /__ / /_ / / / / _/
|
|
/ / / / __ \/ _ \/ __ \ | | /| / / _ \/ __ \/ / / // /
|
|
/ /_/ / /_/ / __/ / / / | |/ |/ / __/ /_/ / /_/ // /
|
|
\____/ .___/\___/_/ /_/ |__/|__/\___/_.___/\____/___/
|
|
/_/
|
|
|
|
EOF
|
|
}
|
|
header_info
|
|
echo -e "Loading..."
|
|
APP="Open WebUI"
|
|
var_disk="16"
|
|
var_cpu="4"
|
|
var_ram="4096"
|
|
var_os="debian"
|
|
var_version="12"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function default_settings() {
|
|
CT_TYPE="1"
|
|
PW=""
|
|
CT_ID=$NEXTID
|
|
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
|
|
}
|
|
|
|
function update_script() {
|
|
header_info
|
|
if [[ ! -d /opt/open-webui ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
|
msg_info "Updating ${APP} (Patience)"
|
|
cd /opt/open-webui
|
|
output=$(git pull --no-rebase)
|
|
if echo "$output" | grep -q "Already up to date."
|
|
then
|
|
msg_ok "$APP is already up to date."
|
|
exit
|
|
fi
|
|
systemctl stop open-webui.service
|
|
npm install &>/dev/null
|
|
export NODE_OPTIONS="--max-old-space-size=3584"
|
|
npm run build &>/dev/null
|
|
cd ./backend
|
|
pip install -r requirements.txt -U &>/dev/null
|
|
systemctl start open-webui.service
|
|
msg_ok "Updated Successfully"
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed Successfully!\n"
|
|
echo -e "${APP} should be reachable by going to the following URL.
|
|
${BL}http://${IP}:8080${CL} \n"
|