From e3dc66aeb2dba47e3670989d64ce51bdda3c010b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 20:01:18 +0100 Subject: [PATCH] code premisses --- lgsm/functions/command_wipe.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 2bdcf9c76..339d9d726 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -5,3 +5,34 @@ # Website: https://gameservermanagers.com # Description: Wipes server data for Rust, useful after monthly updates +local commandname="WIPE" +local commandaction="wipe data" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +check.sh + +fn_print_header + +# Checks if there is something to wipe +fn_wipe_check(){ + if [ "${gamename}" == "Rust" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -f "${serveridentitydir}/proceduralmap*.sav" ]; then + fn_wipe_server_process + else + echo "Nothing to wipe" + core_exit.sh + fi +} + +fn_wipe_server_process(){ + check_status.sh + if [ "${status}" != "0" ]; then + exitbypass=1 + command_stop.sh + fn_validation + exitbypass=1 + command_start.sh +else + fn_validation +fi +}