Skip to content

Commit

Permalink
Added shutdown and save functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Dashboy1998 committed Feb 20, 2024
1 parent e72c43d commit a181fb7
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 9 deletions.
3 changes: 1 addition & 2 deletions scripts/auto_reboot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ if [[ "${AUTO_REBOOT_WARN_MINUTES}" =~ ^[0-9]+$ ]]; then
RCON "broadcast The_Server_will_reboot_in_${i}_Minutes"
sleep "1m"
done
RCON save
RCON "shutdown 1"
shutdown_server
exit 0
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "/home/steam/server/helper_functions.sh"

DiscordMessage "Creating backup..." "in-progress"
if [ "${RCON_ENABLED,,}" = true ]; then
RCON save
save_server
fi

DATE=$(date +"%Y-%m-%d_%H-%M-%S")
Expand Down
27 changes: 27 additions & 0 deletions scripts/helper_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,33 @@ RCON() {
rcon-cli -c /home/steam/server/rcon.yaml "$args"
}

# Saves the server
# Returns 0 if it saves
# Returns 1 if it is not able to save
save_server() {
local return_val=0
if ! RCON save; then
return_val=1
fi
return "$return_val"
}

# Saves then shutdowns the server
# Returns 0 if it is shutdown
# Returns 1 if it is not able to be shutdown
shutdown_server() {
local return_val=0
# Do not shutdown if not able to save
if save_server; then
if ! RCON "DoExit"; then
return_val=1
fi
else
return_val=1
fi
return "$return_val"
}

# Helper Functions for installation & updates
# shellcheck source=/dev/null
source "/home/steam/server/helper_install.sh"
6 changes: 2 additions & 4 deletions scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@ mkdir -p /palworld/backups
term_handler() {
DiscordMessage "${DISCORD_PRE_SHUTDOWN_MESSAGE}" "in-progress"

if [ "${RCON_ENABLED,,}" = true ]; then
RCON save
RCON "shutdown 1"
else # Does not save
if ! shutdown_server; then
# Does not save
kill -SIGTERM "$(pidof PalServer-Linux-Test)"
fi

Expand Down
3 changes: 1 addition & 2 deletions scripts/restore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ if [ -f "$BACKUP_FILE" ]; then

if [ "${RCON_ENABLED}" = true ]; then
LogAction "Shutting Down Server"
RCON save
RCON "shutdown 1"
shutdown_server
else
LogWarn "RCON is not enabled. Please enable RCON to use this feature. Unable to restore backup."
exit 1
Expand Down

0 comments on commit a181fb7

Please sign in to comment.