2025-11-02 23:49:54 -08:00
|
|
|
#!/usr/bin/env bash
|
2026-09-01 13:28:55 +02:00
|
|
|
_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")
|
2026-01-06 13:28:12 +01:00
|
|
|
# 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
|
2026-02-24 15:11:53 +01:00
|
|
|
# Source: https://docs.craftycontrol.com/pages/getting-started/installation/linux/
|
2025-02-05 13:28:21 +01:00
|
|
|
|
|
|
|
|
APP="Crafty-Controller"
|
2025-04-10 11:56:52 +02:00
|
|
|
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}"
|
2026-01-24 23:48:09 +01:00
|
|
|
var_version="${var_version:-13}"
|
2026-06-19 17:53:08 +10:00
|
|
|
var_arm64="${var_arm64:-yes}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_unprivileged="${var_unprivileged:-1}"
|
2025-02-05 13:28:21 +01:00
|
|
|
|
|
|
|
|
header_info "$APP"
|
|
|
|
|
variables
|
|
|
|
|
color
|
|
|
|
|
catch_errors
|
|
|
|
|
|
|
|
|
|
function update_script() {
|
2025-04-01 10:25:46 +02:00
|
|
|
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
|
2025-04-01 10:25:46 +02:00
|
|
|
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"
|
2025-04-01 10:25:46 +02:00
|
|
|
|
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
|
|
|
|
2026-08-09 18:49:50 +02: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
|
|
|
|
2026-06-24 02:21:48 +10: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
|
|
|
|
2025-04-01 10:25:46 +02:00
|
|
|
msg_info "Starting Crafty-Controller"
|
|
|
|
|
systemctl start crafty-controller
|
|
|
|
|
msg_ok "Started Crafty-Controller"
|
2025-02-05 13:28:21 +01:00
|
|
|
|
2025-10-30 09:24:16 -07:00
|
|
|
msg_ok "Updated successfully!"
|
2025-02-05 13:28:21 +01:00
|
|
|
fi
|
2025-08-13 15:11:05 +02:00
|
|
|
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}"
|
2026-06-03 11:03:13 +02:00
|
|
|
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
|
|
|
|
|
echo -e "${GATEWAY}${BGN}https://${IP}:8443${CL}"
|