Files

83 lines
2.8 KiB
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main"
_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func"
source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func")
# Copyright (c) 2021-2026 community-scripts ORG
2025-02-05 13:28:21 +01:00
# Author: CrazyWolf13
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://docs.craftycontrol.com/pages/getting-started/installation/linux/
2025-02-05 13:28:21 +01:00
APP="Crafty-Controller"
var_tags="${var_tags:-gaming}"
var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-4096}"
var_disk="${var_disk:-16}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_arm64="${var_arm64:-yes}"
var_unprivileged="${var_unprivileged:-1}"
2025-02-05 13:28:21 +01:00
header_info "$APP"
variables
color
catch_errors
function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -d /opt/crafty-controller ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
2026-06-18 11:55:28 +02:00
if check_for_gl_release "Crafty-Controller" "crafty-controller/crafty-4"; then
msg_info "Stopping Crafty-Controller"
systemctl stop crafty-controller
msg_ok "Stopped Crafty-Controller"
2025-02-05 13:28:21 +01:00
2026-06-18 11:55:28 +02:00
create_backup \
"/opt/crafty-controller/crafty/crafty-4/app/config/db" \
"/opt/crafty-controller/crafty/crafty-4/app/config/config.json" \
"/opt/crafty-controller/crafty/crafty-4/app/config/web" \
"/opt/crafty-controller/crafty/crafty-4/servers" \
"/opt/crafty-controller/crafty/crafty-4/backups" \
"/opt/crafty-controller/crafty/crafty-4/import"
2026-06-18 11:55:28 +02:00
CLEAN_INSTALL=1 fetch_and_deploy_gl_release "Crafty-Controller" "crafty-controller/crafty-4" "tarball" "latest" "/opt/crafty-controller/crafty/crafty-4"
2025-02-05 13:28:21 +01:00
chown -R crafty:crafty /opt/crafty-controller
2026-06-14 14:32:06 +02:00
restore_backup
2026-06-18 11:55:28 +02:00
msg_info "Updating TemurinJDK"
setup_java
$STD apt install -y temurin-{8,11,17,21,25}-jre
$STD update-alternatives --set java /usr/lib/jvm/temurin-25-jre-$(arch_resolve)/bin/java
msg_ok "Updated TemurinJDK"
2026-06-18 11:55:28 +02:00
msg_info "Updating Python dependencies"
cd /opt/crafty-controller/crafty/crafty-4
$STD sudo -u crafty bash -c '
source /opt/crafty-controller/crafty/.venv/bin/activate
pip3 install --no-cache-dir -r requirements.txt
'
msg_ok "Updated Python dependencies"
2025-02-05 13:28:21 +01:00
msg_info "Starting Crafty-Controller"
systemctl start crafty-controller
msg_ok "Started Crafty-Controller"
2025-02-05 13:28:21 +01:00
msg_ok "Updated successfully!"
2025-02-05 13:28:21 +01:00
fi
exit
2025-02-05 13:28:21 +01:00
}
start
build_container
description
2026-01-06 22:57:40 +01:00
msg_ok "Completed successfully!\n"
2025-02-05 13:28:21 +01:00
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
echo -e "${GATEWAY}${BGN}https://${IP}:8443${CL}"