mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-07-27 16:22:53 +02:00
49e04e6202
* Add satisfactory (ct) * Refactor messages for Satisfactory application --------- Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com> Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com>
71 lines
1.9 KiB
Bash
71 lines
1.9 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: n8flx
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://www.satisfactorygame.com/
|
|
|
|
APP="Satisfactory"
|
|
var_tags="${var_tags:-gaming;server}"
|
|
var_cpu="${var_cpu:-4}"
|
|
var_ram="${var_ram:-8192}"
|
|
var_disk="${var_disk:-20}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_arm64="${var_arm64:-no}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
|
|
if [[ ! -x /opt/steamcmd/steamcmd.sh || ! -d /opt/satisfactory/server ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
msg_info "Stopping Satisfactory"
|
|
systemctl stop satisfactory
|
|
msg_ok "Stopped Satisfactory"
|
|
|
|
create_backup /home/steam/.config/Epic/FactoryGame/Saved
|
|
|
|
msg_info "Updating Satisfactory"
|
|
if $STD runuser -u steam -- /opt/steamcmd/steamcmd.sh \
|
|
+force_install_dir /opt/satisfactory/server \
|
|
+login anonymous \
|
|
+app_update 1690800 -beta public validate \
|
|
+quit; then
|
|
msg_ok "Updated Satisfactory"
|
|
else
|
|
restore_backup
|
|
systemctl start satisfactory
|
|
msg_error "Failed to update Satisfactory"
|
|
exit 1
|
|
fi
|
|
|
|
restore_backup
|
|
|
|
msg_info "Starting Satisfactory"
|
|
systemctl start satisfactory
|
|
msg_ok "Started Satisfactory"
|
|
msg_ok "Updated Successfully!"
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed Successfully!\n"
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
echo -e "${INFO}${YW} Add the server in Satisfactory Server Manager:${CL}"
|
|
echo -e "${TAB}${GATEWAY}${BGN}${IP}:7777${CL}"
|
|
echo -e "${INFO}${YW} Required ports:${CL} ${BGN}7777 TCP/UDP and 8888 TCP${CL}"
|