Browse Source

should be working, needs logging & proper output

pull/1275/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
8240e9c937
  1. 75
      lgsm/functions/command_wipe.sh

75
lgsm/functions/command_wipe.sh

@ -3,7 +3,7 @@
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Contributor: UltimateByte # Contributor: UltimateByte
# Website: https://gameservermanagers.com # Website: https://gameservermanagers.com
# Description: Wipes server data for Rust, useful after monthly updates # Description: Wipes server data, useful after updates for some games like Rust
local commandname="WIPE" local commandname="WIPE"
local commandaction="wipe data" local commandaction="wipe data"
@ -14,25 +14,62 @@ check.sh
fn_print_header fn_print_header
# Checks if there is something to wipe # Checks if there is something to wipe
fn_wipe_check(){ fn_wipe_server(){
if [ "${gamename}" == "Rust" ]; then # Rust Wipe
if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -f "${serveridentitydir}/proceduralmap*.sav" ]; then if [ "${gamename}" == "Rust" ]; then
fn_wipe_server_process if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then
else echo " * Any user, storage, and map data will be erased."
echo "Nothing to wipe" while true; do
core_exit.sh read -e -i "y" -p "Continue? [Y/n]" yn
fi case $yn in
[Yy]* ) break;;
[Nn]* ) echo Exiting; core_exit.sh;;
* ) echo "Please answer yes or no.";;
esac
done
fn_script_log_info "User selected to continue"
fn_wipe_server_process
else
echo "Nothing to wipe"
core_exit.sh
fi
else
echo "Wipe is not available"
core_exit.sh
fi
} }
# Removes files to wipe server
fn_wipe_server_remove_files(){
if [ "${gamename}" == "Rust" ]; then
if [ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then
echo "Removing map"
rm -f "${serveridentitydir}/proceduralmap*.sav"
fi
if [ -d "${serveridentitydir}/user" ]; then
echo "Removing users data"
rm -rf "${serveridentitydir}/user"
fi
if [ -d "${serveridentitydir}/storage" ]; then
echo "Removing storage data"
rm -rf "${serveridentitydir}/storage"
fi
fi
}
# Process to server wipe
fn_wipe_server_process(){ fn_wipe_server_process(){
check_status.sh check_status.sh
if [ "${status}" != "0" ]; then if [ "${status}" != "0" ]; then
exitbypass=1 exitbypass=1
command_stop.sh command_stop.sh
fn_validation fn_wipe_server_remove_files
exitbypass=1 exitbypass=1
command_start.sh command_start.sh
else else
fn_validation fn_wipe_server_remove_files
fi fi
echo "Server Wiped"
} }
fn_wipe_server

Loading…
Cancel
Save