Browse Source

code premisses

pull/1275/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
e3dc66aeb2
  1. 31
      lgsm/functions/command_wipe.sh

31
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
}

Loading…
Cancel
Save