From 6271da3cb101d4b9a1ecefafb26c7cfa2ac332ab Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 11:16:14 +0200 Subject: [PATCH 01/14] Added command wipeall Related to #1830 --- lgsm/functions/core_getopt.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index d88d25d2b..5273e1826 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -35,7 +35,8 @@ cmd_mods_update=( "mu;mods-update" "command_mods_update.sh" "Update installed mo # Server specific cmd_change_password=( "pw;change-password" "command_ts3_server_pass.sh" "Change TS3 serveradmin password." ) cmd_install_default_resources=( "ir;install-default-resources" "command_install_resources_mta.sh" "Install the MTA default resources." ) -cmd_wipe=( "wi;wipe" "command_wipe.sh" "Wipe your server data." ) +cmd_wipe=( "wi;wipe" "command_wipe.sh" "Wipe your main game server data." ) +cmd_wipeall=( "fw;wipeall" "command_wipe.sh" "Wipe your game server data and blueprints." ) cmd_map_compressor_u99=( "mc;map-compressor" "compress_ut99_maps.sh" "Compresses all ${gamename} server maps." ) cmd_map_compressor_u2=( "mc;map-compressor" "compress_unreal2_maps.sh" "Compresses all ${gamename} server maps." ) cmd_install_cdkey=( "cd;server-cd-key" "install_ut2k4_key.sh" "Add your server cd key." ) @@ -93,7 +94,7 @@ fi # Unreal exclusive if [ "${gamename}" == "Rust" ]; then - currentopt+=( "${cmd_wipe[@]}" ) + currentopt+=( "${cmd_wipe[@]}" "${cmd_wipeall[@]}" ) fi if [ "${engine}" == "unreal2" ]; then if [ "${gamename}" == "Unreal Tournament 2004" ]; then From de7d264bf91d2398d2c9675845e9842ec8f193bd Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 12:12:09 +0200 Subject: [PATCH 02/14] Attempt at fixing #1949 Fixes #1949 hopefully --- lgsm/functions/command_update_linuxgsm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index 77e5ddc49..5567736b9 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -43,7 +43,7 @@ if [ -z "${legacymode}" ]; then fn_print_ok_eol_nl fi echo -ne " checking ${selfname}...\c" - script_diff=$(diff <(sed '/shortname/d;/gameservername/d;/gamename/d' "${tmpdir}/linuxgsm.sh") <(sed '/shortname/d;/gameservername/d;/gamename/d' "${rootdir}/${selfname}")) + script_diff=$(diff <(sed '/shortname/d;/gameservername/d;/gamename/d;githubuser/d;githubrepo/d;githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '/shortname/d;/gameservername/d;/gamename/d;githubuser/d;githubrepo/d;githubbranch/d' "${rootdir}/${selfname}")) if [ "${script_diff}" != "" ]; then fn_print_update_eol_nl echo -ne " backup ${selfname}...\c" @@ -114,4 +114,4 @@ else fn_script_log_pass "Updating functions" fi echo -ne "\n" -core_exit.sh \ No newline at end of file +core_exit.sh From 944dadaeeff2fd6a0304c8639255a66246c7da25 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 13:01:23 +0200 Subject: [PATCH 03/14] trying out different sed separator --- lgsm/functions/command_update_linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index 5567736b9..3e46f4a4b 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -43,7 +43,7 @@ if [ -z "${legacymode}" ]; then fn_print_ok_eol_nl fi echo -ne " checking ${selfname}...\c" - script_diff=$(diff <(sed '/shortname/d;/gameservername/d;/gamename/d;githubuser/d;githubrepo/d;githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '/shortname/d;/gameservername/d;/gamename/d;githubuser/d;githubrepo/d;githubbranch/d' "${rootdir}/${selfname}")) + script_diff=$(diff <(sed '@shortname@d;@gameservername@d;@gamename@d;githubuser@d;githubrepo@d;githubbranch@d' "${tmpdir}/linuxgsm.sh") <(sed '@shortname@d;@gameservername@d;@gamename@d;githubuser@d;githubrepo@d;githubbranch@d' "${rootdir}/${selfname}")) if [ "${script_diff}" != "" ]; then fn_print_update_eol_nl echo -ne " backup ${selfname}...\c" From 8b1188d8aee6e69d0d867ff6d64d758b1bf13f20 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 13:11:00 +0200 Subject: [PATCH 04/14] Fixing my blindness --- lgsm/functions/command_update_linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index 3e46f4a4b..924b3a201 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -43,7 +43,7 @@ if [ -z "${legacymode}" ]; then fn_print_ok_eol_nl fi echo -ne " checking ${selfname}...\c" - script_diff=$(diff <(sed '@shortname@d;@gameservername@d;@gamename@d;githubuser@d;githubrepo@d;githubbranch@d' "${tmpdir}/linuxgsm.sh") <(sed '@shortname@d;@gameservername@d;@gamename@d;githubuser@d;githubrepo@d;githubbranch@d' "${rootdir}/${selfname}")) + script_diff=$(diff <(sed '/shortname/d;/gameservername/d;/gamename/d;githubuser/d;/githubrepo/d;/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '/shortname/d;/gameservername/d;/gamename/d;/githubuser/d;/githubrepo/d;/githubbranch/d' "${rootdir}/${selfname}")) if [ "${script_diff}" != "" ]; then fn_print_update_eol_nl echo -ne " backup ${selfname}...\c" From 099de12356ab536712d22d5eb819ffc94b032fb1 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 13:13:08 +0200 Subject: [PATCH 05/14] fixing more blindness on horrible sed syntax --- lgsm/functions/command_update_linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index 924b3a201..cfdb9b002 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -43,7 +43,7 @@ if [ -z "${legacymode}" ]; then fn_print_ok_eol_nl fi echo -ne " checking ${selfname}...\c" - script_diff=$(diff <(sed '/shortname/d;/gameservername/d;/gamename/d;githubuser/d;/githubrepo/d;/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '/shortname/d;/gameservername/d;/gamename/d;/githubuser/d;/githubrepo/d;/githubbranch/d' "${rootdir}/${selfname}")) + script_diff=$(diff <(sed '/shortname/d;/gameservername/d;/gamename/d;/githubuser/d;/githubrepo/d;/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '/shortname/d;/gameservername/d;/gamename/d;/githubuser/d;/githubrepo/d;/githubbranch/d' "${rootdir}/${selfname}")) if [ "${script_diff}" != "" ]; then fn_print_update_eol_nl echo -ne " backup ${selfname}...\c" From bb0ae9ae534068f514133a237f51791370ee7992 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 13:15:31 +0200 Subject: [PATCH 06/14] Now trying to fix the actual sed --- lgsm/functions/command_update_linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index cfdb9b002..de4b7e55e 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -43,7 +43,7 @@ if [ -z "${legacymode}" ]; then fn_print_ok_eol_nl fi echo -ne " checking ${selfname}...\c" - script_diff=$(diff <(sed '/shortname/d;/gameservername/d;/gamename/d;/githubuser/d;/githubrepo/d;/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '/shortname/d;/gameservername/d;/gamename/d;/githubuser/d;/githubrepo/d;/githubbranch/d' "${rootdir}/${selfname}")) + script_diff=$(diff <(sed '\/shortname/d;\/gameservername/d;/\gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '\/shortname/d;\/gameservername/d;\/gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${rootdir}/${selfname}")) if [ "${script_diff}" != "" ]; then fn_print_update_eol_nl echo -ne " backup ${selfname}...\c" From 0faf47f0275d32147c24ca04c8608b95f96345a7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 13:18:11 +0200 Subject: [PATCH 07/14] fixed misplaced escape -_- damn me and damn sed --- lgsm/functions/command_update_linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_update_linuxgsm.sh b/lgsm/functions/command_update_linuxgsm.sh index de4b7e55e..56383f0ce 100644 --- a/lgsm/functions/command_update_linuxgsm.sh +++ b/lgsm/functions/command_update_linuxgsm.sh @@ -43,7 +43,7 @@ if [ -z "${legacymode}" ]; then fn_print_ok_eol_nl fi echo -ne " checking ${selfname}...\c" - script_diff=$(diff <(sed '\/shortname/d;\/gameservername/d;/\gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '\/shortname/d;\/gameservername/d;\/gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${rootdir}/${selfname}")) + script_diff=$(diff <(sed '\/shortname/d;\/gameservername/d;\/gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${tmpdir}/linuxgsm.sh") <(sed '\/shortname/d;\/gameservername/d;\/gamename/d;\/githubuser/d;\/githubrepo/d;\/githubbranch/d' "${rootdir}/${selfname}")) if [ "${script_diff}" != "" ]; then fn_print_update_eol_nl echo -ne " backup ${selfname}...\c" From 07e693a926b76576acca6b0d98b3a746b86c1e8a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 14:17:27 +0200 Subject: [PATCH 08/14] added var for fullwipe --- lgsm/functions/core_getopt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 5273e1826..a13f5affc 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -36,7 +36,7 @@ cmd_mods_update=( "mu;mods-update" "command_mods_update.sh" "Update installed mo cmd_change_password=( "pw;change-password" "command_ts3_server_pass.sh" "Change TS3 serveradmin password." ) cmd_install_default_resources=( "ir;install-default-resources" "command_install_resources_mta.sh" "Install the MTA default resources." ) cmd_wipe=( "wi;wipe" "command_wipe.sh" "Wipe your main game server data." ) -cmd_wipeall=( "fw;wipeall" "command_wipe.sh" "Wipe your game server data and blueprints." ) +cmd_wipeall=( "fw;wipeall" "fullwipe=1; command_wipe.sh" "Wipe your game server data and blueprints." ) cmd_map_compressor_u99=( "mc;map-compressor" "compress_ut99_maps.sh" "Compresses all ${gamename} server maps." ) cmd_map_compressor_u2=( "mc;map-compressor" "compress_unreal2_maps.sh" "Compresses all ${gamename} server maps." ) cmd_install_cdkey=( "cd;server-cd-key" "install_ut2k4_key.sh" "Add your server cd key." ) From f60854542e2a803743910a759c72d393ceee6b4c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 14:18:27 +0200 Subject: [PATCH 09/14] better naming for wipe all --- lgsm/functions/core_getopt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index a13f5affc..07b5e71f9 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -36,7 +36,7 @@ cmd_mods_update=( "mu;mods-update" "command_mods_update.sh" "Update installed mo cmd_change_password=( "pw;change-password" "command_ts3_server_pass.sh" "Change TS3 serveradmin password." ) cmd_install_default_resources=( "ir;install-default-resources" "command_install_resources_mta.sh" "Install the MTA default resources." ) cmd_wipe=( "wi;wipe" "command_wipe.sh" "Wipe your main game server data." ) -cmd_wipeall=( "fw;wipeall" "fullwipe=1; command_wipe.sh" "Wipe your game server data and blueprints." ) +cmd_wipeall=( "wa;wipeall" "wipeall=1; command_wipe.sh" "Wipe your game server data and blueprints." ) cmd_map_compressor_u99=( "mc;map-compressor" "compress_ut99_maps.sh" "Compresses all ${gamename} server maps." ) cmd_map_compressor_u2=( "mc;map-compressor" "compress_unreal2_maps.sh" "Compresses all ${gamename} server maps." ) cmd_install_cdkey=( "cd;server-cd-key" "install_ut2k4_key.sh" "Add your server cd key." ) From 2a8982db5a9e493f5c741acbc11c46377c26bc5e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 14:30:53 +0200 Subject: [PATCH 10/14] Full refactor to wipe and now fits new Rust files Fixes #1830 I will test this and fix if needed --- lgsm/functions/command_wipe.sh | 110 +++++++++++++++++++++------------ 1 file changed, 71 insertions(+), 39 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 7e38cf1ab..fc27f56f9 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -43,63 +43,64 @@ fn_wipe_exit_code(){ # Removes files to wipe server fn_wipe_server_remove_files(){ # Rust Wipe -#WipeProceduralSave if [ "${gamename}" == "Rust" ]; then - if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.sav")" ]; then - currentaction="Removing procedural map save(s): ${serveridentitydir}/proceduralmap.*.sav" - echo -en "Removing map saves proceduralmap.*.sav file(s)..." + # Wipe pocedural map + if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.map")" ]; then + currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap.*.map" + echo -en "Removing procedural map proceduralmap.*.map file(s)..." sleep 0.5 fn_script_log "${currentaction}" - find "${serveridentitydir:?}" -type f -name "proceduralmap.*.sav" -delete + find "${serveridentitydir:?}" -type f -name "proceduralmap.*.map" -delete fn_wipe_exit_code sleep 0.5 else - fn_print_information_nl "No procedural map save to remove" - fn_script_log_info "No procedural map save to remove." + fn_print_information_nl "No procedural map file to remove" + fn_script_log_info "No procedural map file to remove." sleep 0.5 fi -#WipeBarrenSave - if [ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]; then - currentaction="Removing barren map save(s): ${serveridentitydir}/barren*.sav" - echo -en "Removing barren map saves barren*.sav file(s)..." + #Wipe procedural map save + if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.sav")" ]; then + currentaction="Removing procedural map save(s): ${serveridentitydir}/proceduralmap.*.sav" + echo -en "Removing map saves proceduralmap.*.sav file(s)..." sleep 0.5 fn_script_log "${currentaction}" - find "${serveridentitydir:?}" -type f -name "barren*.sav" -delete + find "${serveridentitydir:?}" -type f -name "proceduralmap.*.sav" -delete fn_wipe_exit_code sleep 0.5 else - fn_print_information_nl "No barren map save to remove" - fn_script_log_info "No barren map save to remove." + fn_print_information_nl "No procedural map save to remove" + fn_script_log_info "No procedural map save to remove." sleep 0.5 fi -#WipeProceduralMap - if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.map")" ]; then - currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap.*.map" - echo -en "Removing procedural map proceduralmap.*.map file(s)..." + # Wipe Barren map + if [ -n "$(find "${serveridentitydir}" -type f -name "barren*.map")" ]; then + currentaction="Removing map file(s): ${serveridentitydir}/barren*.map" + echo -en "Removing barren map barren*.map file(s)..." sleep 0.5 fn_script_log "${currentaction}" - find "${serveridentitydir:?}" -type f -name "proceduralmap.*.map" -delete + find "${serveridentitydir:?}" -type f -name "barren*.map" -delete fn_wipe_exit_code sleep 0.5 else - fn_print_information_nl "No procedural map file to remove" - fn_script_log_info "No procedural map file to remove." + fn_print_information_nl "No barren map file to remove" + fn_script_log_info "No barren map file to remove." sleep 0.5 fi -#WipeBarrenMap - if [ -n "$(find "${serveridentitydir}" -type f -name "barren*.map")" ]; then - currentaction="Removing map file(s): ${serveridentitydir}/barren*.map" - echo -en "Removing barren map barren*.map file(s)..." + # Wipe barren map save + if [ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]; then + currentaction="Removing barren map save(s): ${serveridentitydir}/barren*.sav" + echo -en "Removing barren map saves barren*.sav file(s)..." sleep 0.5 fn_script_log "${currentaction}" - find "${serveridentitydir:?}" -type f -name "barren*.map" -delete + find "${serveridentitydir:?}" -type f -name "barren*.sav" -delete fn_wipe_exit_code sleep 0.5 else - fn_print_information_nl "No barren map file to remove" - fn_script_log_info "No barren map file to remove." + fn_print_information_nl "No barren map save to remove" + fn_script_log_info "No barren map save to remove." sleep 0.5 fi + # Wipe user dir, might be a legacy thing, maybe to be removed if [ -d "${serveridentitydir}/user" ]; then currentaction="Removing user directory: ${serveridentitydir}/user" echo -en "Removing user directory..." @@ -108,11 +109,9 @@ fn_wipe_server_remove_files(){ rm -rf "${serveridentitydir:?}/user" fn_wipe_exit_code sleep 0.5 - else - fn_print_information_nl "No user directory to remove" - fn_script_log_info "No user directory to remove." - sleep 0.5 + # We do not print additional information if there is nothing to remove since this might be obsolete fi + # Wipe storage dir, might be a legacy thing, maybe to be removed if [ -d "${serveridentitydir}/storage" ]; then currentaction="Removing storage directory: ${serveridentitydir}/storage" echo -en "Removing storage directory..." @@ -121,11 +120,47 @@ fn_wipe_server_remove_files(){ rm -rf "${serveridentitydir:?}/storage" fn_wipe_exit_code sleep 0.5 + # We do not print additional information if there is nothing to remove since this might be obsolete + fi + # Wipe player death files + if [ -n "$(find "${serveridentitydir}" -type f -name "player.deaths.*.db")" ]; then + currentaction="Removing player death files: ${serveridentitydir}/player.deaths.*.db" + echo -en "Removing player deaths player.deaths.*.db file(s)..." + sleep 0.5 + fn_script_log "${currentaction}" + find "${serveridentitydir:?}" -type f -name "player.deaths.*.db" -delete + fn_wipe_exit_code + sleep 0.5 else - fn_print_information_nl "No storage directory to remove" - fn_script_log_info "No storage directory to remove." + fn_print_information_nl "No player death to remove" + fn_script_log_info "No player death to remove." sleep 0.5 fi + # Wipe blueprints only if wipeall command was used + if [ "${wipeall}" == "1" ]; then + if [ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]; then + currentaction="Removing blueprint file(s): ${serveridentitydir}/player.blueprints.*.db" + echo -en "Removing procedural blueprints player.blueprints.*.db file(s)..." + sleep 0.5 + fn_script_log "${currentaction}" + find "${serveridentitydir:?}" -type f -name "player.blueprints.*.db" -delete + fn_wipe_exit_code + sleep 0.5 + else + fn_print_information_nl "No blueprint file to remove" + fn_script_log_info "No blueprint file to remove." + sleep 0.5 + fi + elif [ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ] + fn_print_information_nl "Keeping blueprints" + fn_script_log_info "Keeping blueprints." + sleep 0.5 + else + fn_print_information_nl "No blueprints found" + fn_script_log_info "No blueprints found." + sleep 0.5 + fi + # Wipe some logs that might be there if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" echo -en "Removing Log files..." @@ -134,10 +169,7 @@ fn_wipe_server_remove_files(){ find "${serveridentitydir:?}" -type f -name "Log.*.txt" -delete fn_wipe_exit_code sleep 0.5 - else - fn_print_information_nl "No log files to remove" - fn_script_log_info "No log files to remove." - sleep 0.5 + # We do not print additional information if there are no logs to remove fi # You can add an "elif" here to add another game or engine fi @@ -146,7 +178,7 @@ fn_wipe_server_remove_files(){ # Check if there is something to wipe, prompt the user, and call appropriate functions # Rust Wipe if [ "${gamename}" == "Rust" ]; then - if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "player.deaths.*.db")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]; then fn_print_warning_nl "Any user, storage, log and map data from ${serveridentitydir} will be erased." if ! fn_prompt_yn "Continue?" Y; then echo Exiting; core_exit.sh From d209743012daf6178e91e8d4a311a65cd9c4b2e3 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 14:32:25 +0200 Subject: [PATCH 11/14] bash syntax --- lgsm/functions/command_wipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index fc27f56f9..62374ced8 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -151,7 +151,7 @@ fn_wipe_server_remove_files(){ fn_script_log_info "No blueprint file to remove." sleep 0.5 fi - elif [ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ] + elif [ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]; then fn_print_information_nl "Keeping blueprints" fn_script_log_info "Keeping blueprints." sleep 0.5 From 642f13ecd33f658053a142750505d2b6ddf88a6c Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 14:34:03 +0200 Subject: [PATCH 12/14] typo --- lgsm/functions/command_wipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 62374ced8..abad7e1fc 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -140,7 +140,7 @@ fn_wipe_server_remove_files(){ if [ "${wipeall}" == "1" ]; then if [ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]; then currentaction="Removing blueprint file(s): ${serveridentitydir}/player.blueprints.*.db" - echo -en "Removing procedural blueprints player.blueprints.*.db file(s)..." + echo -en "Removing blueprints player.blueprints.*.db file(s)..." sleep 0.5 fn_script_log "${currentaction}" find "${serveridentitydir:?}" -type f -name "player.blueprints.*.db" -delete From efc7976bc9260d25d2c250c9d1590bb41f33fadb Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 14:39:19 +0200 Subject: [PATCH 13/14] missing space on a comment critical fix ;D --- lgsm/functions/command_wipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index abad7e1fc..b9ed70ecb 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -58,7 +58,7 @@ fn_wipe_server_remove_files(){ fn_script_log_info "No procedural map file to remove." sleep 0.5 fi - #Wipe procedural map save + # Wipe procedural map save if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.sav")" ]; then currentaction="Removing procedural map save(s): ${serveridentitydir}/proceduralmap.*.sav" echo -en "Removing map saves proceduralmap.*.sav file(s)..." From 52a81d674a8cbe229509ff291bcfe2c633a6a3f0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 21 Jul 2018 14:44:49 +0200 Subject: [PATCH 14/14] Added sv.files.*.db --- lgsm/functions/command_wipe.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index b9ed70ecb..69d0140f3 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -122,6 +122,17 @@ fn_wipe_server_remove_files(){ sleep 0.5 # We do not print additional information if there is nothing to remove since this might be obsolete fi + # Wipe sv.files + if [ -n "$(find "${serveridentitydir}" -type f -name "sv.files.*.db")" ]; then + currentaction="Removing server misc files: ${serveridentitydir}/sv.files.*.db" + echo -en "Removing server misc srv.files*.db file(s)..." + sleep 0.5 + fn_script_log "${currentaction}" + find "${serveridentitydir:?}" -type f -name "sv.files.*.d" -delete + fn_wipe_exit_code + sleep 0.5 + # No further information if not found because it should I could not get this file showing up + fi # Wipe player death files if [ -n "$(find "${serveridentitydir}" -type f -name "player.deaths.*.db")" ]; then currentaction="Removing player death files: ${serveridentitydir}/player.deaths.*.db" @@ -178,7 +189,7 @@ fn_wipe_server_remove_files(){ # Check if there is something to wipe, prompt the user, and call appropriate functions # Rust Wipe if [ "${gamename}" == "Rust" ]; then - if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "player.deaths.*.db")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "barren*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "player.deaths.*.db")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "player.blueprints.*.db")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "sv.files.*.db")" ]; then fn_print_warning_nl "Any user, storage, log and map data from ${serveridentitydir} will be erased." if ! fn_prompt_yn "Continue?" Y; then echo Exiting; core_exit.sh