From bc8083218987d3877c33c0f7bd98bdcd70fbaeaa Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 05:31:13 +0100 Subject: [PATCH 01/36] fn_getopt_rustserver (wipe command) --- lgsm/functions/core_getopt.sh | 88 +++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index faa9c7011..495cc7825 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -574,6 +574,92 @@ case "${getopt}" in esac } +fn_getopt_rustserver(){ +case "${getopt}" in + st|start) + command_start.sh;; + sp|stop) + command_stop.sh;; + r|restart) + command_restart.sh;; + u|update) + command_update.sh;; + fu|force-update|update-restart) + forceupdate=1; + command_update.sh;; + uf|update-functions) + command_update_functions.sh;; + v|validate) + command_validate.sh;; + m|monitor) + command_monitor.sh;; + ta|test-alert) + command_test_alert.sh;; + dt|details) + command_details.sh;; + pd|postdetails) + command_postdetails.sh;; + b|backup) + command_backup.sh;; + c|console) + command_console.sh;; + d|debug) + command_debug.sh;; + dev|dev-debug) + command_dev_debug.sh;; + i|install) + command_install.sh;; + ai|auto-install) + fn_autoinstall;; + mi|mods-install) + command_mods_install.sh;; + mu|mods-update) + command_mods_update.sh;; + mr|mods-remove) + command_mods_remove.sh;; + wi|wipe + command_wipe.sh + dd|detect-deps) + command_dev_detect_deps.sh;; + dg|detect-glibc) + command_dev_detect_glibc.sh;; + dl|detect-ldd) + command_dev_detect_ldd.sh;; + *) + if [ -n "${getopt}" ]; then + echo -e "${red}Unknown command${default}: $0 ${getopt}" + exitcode=2 + fi + echo "Usage: $0 [option]" + echo "${gamename} - Linux Game Server Manager - Version ${version}" + echo "https://gameservermanagers.com/${selfname}" + echo -e "" + echo -e "${lightyellow}Commands${default}" + { + echo -e "${blue}start\t${default}st |Start the server." + echo -e "${blue}stop\t${default}sp |Stop the server." + echo -e "${blue}restart\t${default}r |Restart the server." + echo -e "${blue}update\t${default}u |Checks and applies updates from SteamCMD." + echo -e "${blue}force-update\t${default}fu |Bypasses the check and applies updates from SteamCMD." + echo -e "${blue}update-functions\t${default}uf |Removes all functions so latest can be downloaded." + echo -e "${blue}validate\t${default}v |Validate server files with SteamCMD." + echo -e "${blue}monitor\t${default}m |Checks that the server is running." + echo -e "${blue}test-alert\t${default}ta |Sends test alert." + echo -e "${blue}details\t${default}dt |Displays useful information about the server." + echo -e "${blue}postdetails\t${default}pd |Post stripped details to pastebin (for support)" + echo -e "${blue}backup\t${default}b |Create archive of the server." + echo -e "${blue}console\t${default}c |Console allows you to access the live view of a server." + echo -e "${blue}debug\t${default}d |See the output of the server directly to your terminal." + echo -e "${blue}install\t${default}i |Install the server." + echo -e "${blue}auto-install\t${default}ai |Install the server, without prompts." + echo -e "${blue}mods-install\t${default}mi |View and install available mods/addons." + echo -e "${blue}mods-update\t${default}mu |Update installed mods/addons." + echo -e "${blue}mods-remove\t${default}mr |Remove installed mods/addons." + echo -e "${blue}wipe\t${default}wi |Wipe your Rust server." + } | column -s $'\t' -t + esac +} + fn_getopt_unreal(){ case "${getopt}" in st|start) @@ -796,6 +882,8 @@ elif [ "${gamename}" == "Mumble" ]; then # Teamspeak 3 elif [ "${gamename}" == "TeamSpeak 3" ]; then fn_getopt_teamspeak3 +elif [ "${gamename}" == "Rust" ]; then + fn_getopt_rustserver # Unreal 2 Engine elif [ "${engine}" == "unreal2" ]; then if [ "${gamename}" == "Unreal Tournament 2004" ]; then From 694b27b35ae81e51c4de42aec626a64b7f0f6c87 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 05:32:32 +0100 Subject: [PATCH 02/36] command_wipe.sh --- lgsm/functions/core_functions.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index cd7aa07c7..a84163921 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -212,6 +212,10 @@ functionfile="${FUNCNAME}" fn_fetch_function } +command_wipe.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} # Checks From 63e0c184c320952af0612ada908fc90b96910b72 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 06:05:53 +0100 Subject: [PATCH 03/36] file init --- lgsm/functions/command_wipe.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lgsm/functions/command_wipe.sh diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh new file mode 100644 index 000000000..2bdcf9c76 --- /dev/null +++ b/lgsm/functions/command_wipe.sh @@ -0,0 +1,7 @@ +#!/bin/bash +# LGSM command_backup.sh function +# Author: Daniel Gibbs +# Contributor: UltimateByte +# Website: https://gameservermanagers.com +# Description: Wipes server data for Rust, useful after monthly updates + From e830e8f9428f4045c388c1a673f6a028f713f51f Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:29:09 +0100 Subject: [PATCH 04/36] various fixes --- lgsm/functions/mods_core.sh | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 1eb5984b0..9fd731c97 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -121,7 +121,7 @@ fn_mod_tidy_files_list(){ sleep 0.5 fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) - removefromlist="cfg;addons;" + removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data/Managed;RustDedicated_Data/Managed/x86;" # Loop through files to remove from file list, # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" @@ -344,6 +344,21 @@ fn_mod_compatible_test(){ # Create mods files and directories if it doesn't exist fn_create_mods_dir(){ + # Create lgsm data modsdir + if [ ! -d "${modsdir}" ];then + echo "creating lgsm mods data directory ${modsdir}..." + mkdir -p "${modsdir}" + exitcode=$? + if [ ${exitcode} -ne 0 ]; then + fn_print_fail_eol_nl + fn_script_log_fatal "Creating mod download dir ${modsdir}" + core_exit.sh + else + fn_print_ok_eol_nl + fn_script_log_pass "Creating mod download dir ${modsdir}" + fi + sleep 0.5 + fi # Create mod install directory if [ ! -d "${modinstalldir}" ]; then echo "creating mods install directory ${modinstalldir}..." @@ -351,11 +366,11 @@ fn_create_mods_dir(){ exitcode=$? if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl - fn_script_log_fatal "Creating mod download dir ${modinstalldir}" + fn_script_log_fatal "Creating mod install directory ${modinstalldir}" core_exit.sh else fn_print_ok_eol_nl - fn_script_log_pass "Creating mod download dir ${modinstalldir}" + fn_script_log_pass "Creating mod install directory ${modinstalldir}" fi sleep 0.5 fi From 7b28f2b609acb5264dfe545883e6432d04031d41 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:30:49 +0100 Subject: [PATCH 05/36] missing ;; --- 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 495cc7825..121c7c244 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -618,7 +618,7 @@ case "${getopt}" in mr|mods-remove) command_mods_remove.sh;; wi|wipe - command_wipe.sh + command_wipe.sh;; dd|detect-deps) command_dev_detect_deps.sh;; dg|detect-glibc) From 332bcee4840be3d27aba2eb917881b090e6426a1 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:33:03 +0100 Subject: [PATCH 06/36] missing ), damn! --- 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 121c7c244..06dbccc43 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -617,7 +617,7 @@ case "${getopt}" in command_mods_update.sh;; mr|mods-remove) command_mods_remove.sh;; - wi|wipe + wi|wipe) command_wipe.sh;; dd|detect-deps) command_dev_detect_deps.sh;; From 451191c4777f733992917f3d8cfc480054d2cc4d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:42:14 +0100 Subject: [PATCH 07/36] escape for sed & fn_script_log_fail > fn_script_log_error --- lgsm/functions/mods_core.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 9fd731c97..f6319f284 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -121,7 +121,7 @@ fn_mod_tidy_files_list(){ sleep 0.5 fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) - removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data/Managed;RustDedicated_Data/Managed/x86;" + removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;" # Loop through files to remove from file list, # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" @@ -439,7 +439,7 @@ fn_mods_check_installed(){ echo "" fn_print_failure_nl "No installed mods or addons were found" echo " * Install mods using LGSM first with: ./${selfname} mods-install" - fn_script_log_fail "No installed mods or addons were found." + fn_script_log_error "No installed mods or addons were found." core_exit.sh fi } From c13ab40e0d98f2aefe4683aa7673107092ebe0af Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:45:10 +0100 Subject: [PATCH 08/36] don't erase rust x64 dir --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index f6319f284..8c5e858ab 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -121,7 +121,7 @@ fn_mod_tidy_files_list(){ sleep 0.5 fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) - removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;" + removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;RustDedicated_Data\/Managed\/x64" # Loop through files to remove from file list, # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" From f8072b69ded7034b813a2a20fcb9ea4d9eaa2fb0 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:48:33 +0100 Subject: [PATCH 09/36] typo: loga > log --- lgsm/functions/command_mods_remove.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index 7b96503ec..d63a00101 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -114,11 +114,11 @@ sleep 0.5 sed -i "/^${modcommand}$/d" "${modsinstalledlistfullpath}" local exitcode=$? if [ ${exitcode} -ne 0 ]; then - fn_script_loga_fatal "Removing ${modcommand} from ${modsinstalledlist}" + fn_script_log_fatal "Removing ${modcommand} from ${modsinstalledlist}" fn_print_fail_eol_nl core_exit.sh else - fn_script_loga_pass "Removing ${modcommand} from ${modsinstalledlist}" + fn_script_log_pass "Removing ${modcommand} from ${modsinstalledlist}" fn_print_ok_eol_nl fi From c972ef09257094100baf1279cec920b660f6c56e Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 07:51:32 +0100 Subject: [PATCH 10/36] missing semicolon for x64 dir to preserve --- lgsm/functions/mods_core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index 8c5e858ab..1e36285e1 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -121,7 +121,7 @@ fn_mod_tidy_files_list(){ sleep 0.5 fn_script_log_info "Tidy up ${modcommand}-files.txt" # Lines/files to remove from file list (end with ";" separator) - removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;RustDedicated_Data\/Managed\/x64" + removefromlist="cfg;addons;RustDedicated_Data;RustDedicated_Data\/Managed;RustDedicated_Data\/Managed\/x86;RustDedicated_Data\/Managed\/x64;" # Loop through files to remove from file list, # generate elements to remove from list removefromlistamount="$(echo "${removefromlist}" | awk -F ';' '{ print NF }')" From 462a653b36ff4efc6ef7a49ed4579dbc74070840 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 08:36:46 +0100 Subject: [PATCH 11/36] attempt for permission errors in /sys fix||alert --- lgsm/functions/check_permissions.sh | 91 +++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 1411e649c..987faef7f 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -126,5 +126,96 @@ fn_check_permissions(){ fi } +## The following fn_sys_perm_* functions checks for permission errors in /sys directory + +# Checks for permission errors in /sys directory +fn_sys_perm_errors(){ + # Reset test variables + sysdirpermerror="0" + classdirpermerror="0" + netdirpermerror="0" + # Check permissions + if [ ! -r "/sys" ]||[ ! -x "/sys" ]; then + sysdirpermerror="1" + fi + if [ ! -r "/sys/class" ]||[ ! -x "/sys/class" ]; then + classdirpermerror="1" + if [ ! -r "/sys/class/net" ]||[ ! -x "sys/class/net" ]; then + netdirpermerror="1" + fi +} + +# Displays /sys related permission errors to the user +fn_sys_perm_error_display(){ + # /sys, /sys/class and /sys/class/net should be readable & executable + # If any error was found + if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then + fn_print_error_nl "Permission error(s) found:" + fn_script_log_error "Permission error(s) found:" + if [ "${sysdirpermerror}" == "1" ]; then + echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" + fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" + fi + if [ "${classdirpermerror}" == "1" ]; then + echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + fi + if [ "${netdirpermerror}" == "1" ]; then + echo " * /sys/class/net permissions are $(stat -c %a /sys/class) instead of expected 755" + fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class) instead of expected 755" + fi + echo "" + fn_print_information_nl "This error causes servers to fail starting properly" + fn_script_log_info "This error causes servers to fail starting properly." +} + +# Attempt to fix /sys related permission errors if sudo is available, exits otherwise +fn_fix_sys_perm_errors(){ + sudo -v > /dev/null 2>&1 + iif [ $? -eq 0 ]; then + fn_print_information_nl "Automatically fixing permissions" + fn_script_log_info "Automatically fixing permissions." + if [ "${sysdirpermerror}" == "1" ]; then + sudo chmod a+rx "/sys" + fi + if [ "${classdirpermerror}" == "1" ]; then + sudo chmod a+rx "/sys/class" + fi + if [ "${netdirpermerror}" == "1" ]; then + sudo a+rx "/sys/class/net" + fi + else + fn_fix_sys_perm_manually_msg + fi + # Run check again to see if it's fixed + fn_sys_perm_errors + if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then + fn_print_error "Could not fix permissions" + fn_script_log_error "Could not fix permissions." + fn_fix_sys_perm_manually_msg + else + fn_print_ok "Automatically fixing permissions" + fi +} + +# Display a message on how to fix the issue manually +fn_fix_sys_perm_manually_msg(){ + echo "" + fn_print_information_nl "To fix this issue, run this command as root:" + fn_script_log_info "To fix this issue, run this command as root:" + echo " * chmod a+rx /sys /sys/class /sys/class/net" + fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" + core_exit.sh +} + +# Run perm error detect & fix/alert functions on /sys directories +fn_fix_sus_perm_run(){ + fn_sys_perm_errors + fn_sys_perm_error_display + fn_fix_sys_perm_errors +} + +## Run checks fn_check_ownership fn_check_permissions +fn_fix_sus_perm_run From 6bcf93e218e98591548124d627c719cea7838bb9 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 08:41:58 +0100 Subject: [PATCH 12/36] fixes & rework perms on /sys --- lgsm/functions/check_permissions.sh | 34 +++++++++++++++-------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 987faef7f..aaf75939a 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -140,6 +140,7 @@ fn_sys_perm_errors(){ fi if [ ! -r "/sys/class" ]||[ ! -x "/sys/class" ]; then classdirpermerror="1" + fi if [ ! -r "/sys/class/net" ]||[ ! -x "sys/class/net" ]; then netdirpermerror="1" fi @@ -167,12 +168,13 @@ fn_sys_perm_error_display(){ echo "" fn_print_information_nl "This error causes servers to fail starting properly" fn_script_log_info "This error causes servers to fail starting properly." + fi } # Attempt to fix /sys related permission errors if sudo is available, exits otherwise -fn_fix_sys_perm_errors(){ +fn_sys_perm_errors_fix(){ sudo -v > /dev/null 2>&1 - iif [ $? -eq 0 ]; then + if [ $? -eq 0 ]; then fn_print_information_nl "Automatically fixing permissions" fn_script_log_info "Automatically fixing permissions." if [ "${sysdirpermerror}" == "1" ]; then @@ -184,22 +186,22 @@ fn_fix_sys_perm_errors(){ if [ "${netdirpermerror}" == "1" ]; then sudo a+rx "/sys/class/net" fi + # Run check again to see if it's fixed + fn_sys_perm_errors + if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then + fn_print_error "Could not fix permissions" + fn_script_log_error "Could not fix permissions." + fn_sys_perm_fix_manually_msg + else + fn_print_ok "Automatically fixing permissions" + fi else - fn_fix_sys_perm_manually_msg - fi - # Run check again to see if it's fixed - fn_sys_perm_errors - if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_error "Could not fix permissions" - fn_script_log_error "Could not fix permissions." - fn_fix_sys_perm_manually_msg - else - fn_print_ok "Automatically fixing permissions" + fn_sys_perm_fix_manually_msg fi } # Display a message on how to fix the issue manually -fn_fix_sys_perm_manually_msg(){ +fn_sys_perm_fix_manually_msg(){ echo "" fn_print_information_nl "To fix this issue, run this command as root:" fn_script_log_info "To fix this issue, run this command as root:" @@ -209,13 +211,13 @@ fn_fix_sys_perm_manually_msg(){ } # Run perm error detect & fix/alert functions on /sys directories -fn_fix_sus_perm_run(){ +fn_fix_sum_perm_run(){ fn_sys_perm_errors fn_sys_perm_error_display - fn_fix_sys_perm_errors + fn_sys_perm_errors_fix } ## Run checks fn_check_ownership fn_check_permissions -fn_fix_sus_perm_run +fn_fix_sum_perm_run From 0ba392d4902233520e3f6d66ea3e0195b1d02f18 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 08:51:50 +0100 Subject: [PATCH 13/36] typo fixes --- lgsm/functions/check_permissions.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index aaf75939a..664a5f63b 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -141,7 +141,7 @@ fn_sys_perm_errors(){ if [ ! -r "/sys/class" ]||[ ! -x "/sys/class" ]; then classdirpermerror="1" fi - if [ ! -r "/sys/class/net" ]||[ ! -x "sys/class/net" ]; then + if [ ! -r "/sys/class/net" ]||[ ! -x "/sys/class/net" ]; then netdirpermerror="1" fi } @@ -162,8 +162,8 @@ fn_sys_perm_error_display(){ fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" fi if [ "${netdirpermerror}" == "1" ]; then - echo " * /sys/class/net permissions are $(stat -c %a /sys/class) instead of expected 755" - fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class) instead of expected 755" + echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" + fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" fi echo "" fn_print_information_nl "This error causes servers to fail starting properly" From 416d15e76e7e994b34ffd55b9834fd8b74395624 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 08:59:14 +0100 Subject: [PATCH 14/36] Ordering/naming to make more sense --- lgsm/functions/check_permissions.sh | 76 ++++++++++++++--------------- 1 file changed, 37 insertions(+), 39 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 664a5f63b..087e019cc 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -129,7 +129,7 @@ fn_check_permissions(){ ## The following fn_sys_perm_* functions checks for permission errors in /sys directory # Checks for permission errors in /sys directory -fn_sys_perm_errors(){ +fn_sys_perm_errors_detect(){ # Reset test variables sysdirpermerror="0" classdirpermerror="0" @@ -146,29 +146,14 @@ fn_sys_perm_errors(){ fi } -# Displays /sys related permission errors to the user -fn_sys_perm_error_display(){ - # /sys, /sys/class and /sys/class/net should be readable & executable - # If any error was found - if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_error_nl "Permission error(s) found:" - fn_script_log_error "Permission error(s) found:" - if [ "${sysdirpermerror}" == "1" ]; then - echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" - fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" - fi - if [ "${classdirpermerror}" == "1" ]; then - echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" - fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" - fi - if [ "${netdirpermerror}" == "1" ]; then - echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" - fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" - fi - echo "" - fn_print_information_nl "This error causes servers to fail starting properly" - fn_script_log_info "This error causes servers to fail starting properly." - fi +# Display a message on how to fix the issue manually +fn_sys_perm_fix_manually_msg(){ + echo "" + fn_print_information_nl "To fix this issue, run this command as root:" + fn_script_log_info "To fix this issue, run this command as root:" + echo " * chmod a+rx /sys /sys/class /sys/class/net" + fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" + core_exit.sh } # Attempt to fix /sys related permission errors if sudo is available, exits otherwise @@ -187,7 +172,7 @@ fn_sys_perm_errors_fix(){ sudo a+rx "/sys/class/net" fi # Run check again to see if it's fixed - fn_sys_perm_errors + fn_sys_perm_errors_detect if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error "Could not fix permissions" fn_script_log_error "Could not fix permissions." @@ -200,24 +185,37 @@ fn_sys_perm_errors_fix(){ fi } -# Display a message on how to fix the issue manually -fn_sys_perm_fix_manually_msg(){ - echo "" - fn_print_information_nl "To fix this issue, run this command as root:" - fn_script_log_info "To fix this issue, run this command as root:" - echo " * chmod a+rx /sys /sys/class /sys/class/net" - fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" - core_exit.sh +# Processes to the /sys related permission errors check & fix/info +fn_sys_perm_error_process(){ + fn_sys_perm_errors + # /sys, /sys/class and /sys/class/net should be readable & executable + # If any error was found + if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then + fn_print_error_nl "Permission error(s) found:" + fn_script_log_error "Permission error(s) found:" + if [ "${sysdirpermerror}" == "1" ]; then + echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" + fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" + fi + if [ "${classdirpermerror}" == "1" ]; then + echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + fi + if [ "${netdirpermerror}" == "1" ]; then + echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" + fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" + fi + echo "" + fn_print_information_nl "This error causes servers to fail starting properly" + fn_script_log_info "This error causes servers to fail starting properly." + # Run the fix + fn_sys_perm_errors_fix + fi } # Run perm error detect & fix/alert functions on /sys directories -fn_fix_sum_perm_run(){ - fn_sys_perm_errors - fn_sys_perm_error_display - fn_sys_perm_errors_fix -} ## Run checks fn_check_ownership fn_check_permissions -fn_fix_sum_perm_run +fn_sys_perm_error_process From 369f5cc9519980838192007b7611514bdda058b2 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:01:14 +0100 Subject: [PATCH 15/36] comments location & func name --- lgsm/functions/check_permissions.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 087e019cc..10f9ce701 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -135,6 +135,7 @@ fn_sys_perm_errors_detect(){ classdirpermerror="0" netdirpermerror="0" # Check permissions + # /sys, /sys/class and /sys/class/net should be readable & executable if [ ! -r "/sys" ]||[ ! -x "/sys" ]; then sysdirpermerror="1" fi @@ -176,19 +177,20 @@ fn_sys_perm_errors_fix(){ if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error "Could not fix permissions" fn_script_log_error "Could not fix permissions." + # Show the user how to fix fn_sys_perm_fix_manually_msg else fn_print_ok "Automatically fixing permissions" fi else + # Show the user how to fix fn_sys_perm_fix_manually_msg fi } # Processes to the /sys related permission errors check & fix/info fn_sys_perm_error_process(){ - fn_sys_perm_errors - # /sys, /sys/class and /sys/class/net should be readable & executable + fn_sys_perm_errors_detect # If any error was found if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error_nl "Permission error(s) found:" From cc8273d24f4329f9b6d5d1b68c860b1b2b123443 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:13:18 +0100 Subject: [PATCH 16/36] missing chmod --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 10f9ce701..0f2220880 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -170,7 +170,7 @@ fn_sys_perm_errors_fix(){ sudo chmod a+rx "/sys/class" fi if [ "${netdirpermerror}" == "1" ]; then - sudo a+rx "/sys/class/net" + sudo chmod a+rx "/sys/class/net" fi # Run check again to see if it's fixed fn_sys_perm_errors_detect From 63d58bccb4ae3bb895ee17c4f8266abb01676172 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:17:45 +0100 Subject: [PATCH 17/36] better output with sleeps --- lgsm/functions/check_permissions.sh | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 0f2220880..ff9d619ee 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -154,6 +154,7 @@ fn_sys_perm_fix_manually_msg(){ fn_script_log_info "To fix this issue, run this command as root:" echo " * chmod a+rx /sys /sys/class /sys/class/net" fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" + sleep 1 core_exit.sh } @@ -162,6 +163,7 @@ fn_sys_perm_errors_fix(){ sudo -v > /dev/null 2>&1 if [ $? -eq 0 ]; then fn_print_information_nl "Automatically fixing permissions" + sleep 1 fn_script_log_info "Automatically fixing permissions." if [ "${sysdirpermerror}" == "1" ]; then sudo chmod a+rx "/sys" @@ -177,10 +179,12 @@ fn_sys_perm_errors_fix(){ if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error "Could not fix permissions" fn_script_log_error "Could not fix permissions." + sleep 1 # Show the user how to fix fn_sys_perm_fix_manually_msg else fn_print_ok "Automatically fixing permissions" + sleep 1 fi else # Show the user how to fix @@ -195,19 +199,20 @@ fn_sys_perm_error_process(){ if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_error_nl "Permission error(s) found:" fn_script_log_error "Permission error(s) found:" + sleep 1 if [ "${sysdirpermerror}" == "1" ]; then - echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" + echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" fi if [ "${classdirpermerror}" == "1" ]; then - echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" + echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" fi if [ "${netdirpermerror}" == "1" ]; then - echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" + echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" fi - echo "" + sleep 1 fn_print_information_nl "This error causes servers to fail starting properly" fn_script_log_info "This error causes servers to fail starting properly." # Run the fix From 51f6a5b25ae47bbb6417e1b772c80d0a1202cb95 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:23:01 +0100 Subject: [PATCH 18/36] warn & error in the right places --- lgsm/functions/check_permissions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index ff9d619ee..8609708e2 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -197,8 +197,8 @@ fn_sys_perm_error_process(){ fn_sys_perm_errors_detect # If any error was found if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_error_nl "Permission error(s) found:" - fn_script_log_error "Permission error(s) found:" + fn_print_warn_nl "Permission error(s) found:" + fn_script_log_warn "Permission error(s) found:" sleep 1 if [ "${sysdirpermerror}" == "1" ]; then echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" From 81848996fff4bf0b9b7455805d88d2e7399441e4 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:27:02 +0100 Subject: [PATCH 19/36] log_info instead of warn otherwise fails even if fixed because of exitcode from log_warn --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 8609708e2..ad7f30a78 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -198,7 +198,7 @@ fn_sys_perm_error_process(){ # If any error was found if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then fn_print_warn_nl "Permission error(s) found:" - fn_script_log_warn "Permission error(s) found:" + fn_script_log_info "Permission error(s) found:" sleep 1 if [ "${sysdirpermerror}" == "1" ]; then echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" From f54e5af2648d7df71eb4d05102c13d744ca7c051 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:42:46 +0100 Subject: [PATCH 20/36] output improvements --- lgsm/functions/check_permissions.sh | 30 +++++++++-------------------- 1 file changed, 9 insertions(+), 21 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index ad7f30a78..312f24700 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -162,9 +162,9 @@ fn_sys_perm_fix_manually_msg(){ fn_sys_perm_errors_fix(){ sudo -v > /dev/null 2>&1 if [ $? -eq 0 ]; then - fn_print_information_nl "Automatically fixing permissions" - sleep 1 - fn_script_log_info "Automatically fixing permissions." + fn_print_dots "Automatically fixing /sys permissions" + sleep 2 + fn_script_log_info "Automatically fixing /sys permissions." if [ "${sysdirpermerror}" == "1" ]; then sudo chmod a+rx "/sys" fi @@ -177,13 +177,14 @@ fn_sys_perm_errors_fix(){ # Run check again to see if it's fixed fn_sys_perm_errors_detect if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_error "Could not fix permissions" - fn_script_log_error "Could not fix permissions." + fn_print_error "Could not fix /sys permissions" + fn_script_log_error "Could not fix /sys permissions." sleep 1 # Show the user how to fix fn_sys_perm_fix_manually_msg else - fn_print_ok "Automatically fixing permissions" + fn_print_ok "Automatically fixing /sys permissions" + fn_script_log_pass "Permissions in /sys fixed" sleep 1 fi else @@ -197,21 +198,8 @@ fn_sys_perm_error_process(){ fn_sys_perm_errors_detect # If any error was found if [ "${sysdirpermerror}" == "1" ]||[ "${classdirpermerror}" == "1" ]||[ "${netdirpermerror}" == "1" ]; then - fn_print_warn_nl "Permission error(s) found:" - fn_script_log_info "Permission error(s) found:" - sleep 1 - if [ "${sysdirpermerror}" == "1" ]; then - echo " * /sys permissions are $(stat -c %a /sys) instead of expected 555" - fn_script_log "/sys permissions are $(stat -c %a /sys) instead of expected 555" - fi - if [ "${classdirpermerror}" == "1" ]; then - echo " * /sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" - fn_script_log "/sys/class permissions are $(stat -c %a /sys/class) instead of expected 755" - fi - if [ "${netdirpermerror}" == "1" ]; then - echo " * /sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" - fn_script_log "/sys/class/net permissions are $(stat -c %a /sys/class/net) instead of expected 755" - fi + fn_print_error_nl "Permission error(s) found in /sys" + fn_script_log_error "Permission error(s) found in /sys" sleep 1 fn_print_information_nl "This error causes servers to fail starting properly" fn_script_log_info "This error causes servers to fail starting properly." From f09274abc88df8a3a956d1d7278d4efbed590c5d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 09:45:31 +0100 Subject: [PATCH 21/36] better output & logging --- lgsm/functions/check_permissions.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index 312f24700..fa1e70f74 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -150,9 +150,11 @@ fn_sys_perm_errors_detect(){ # Display a message on how to fix the issue manually fn_sys_perm_fix_manually_msg(){ echo "" - fn_print_information_nl "To fix this issue, run this command as root:" - fn_script_log_info "To fix this issue, run this command as root:" - echo " * chmod a+rx /sys /sys/class /sys/class/net" + fn_print_information_nl "This error causes servers to fail starting properly" + fn_script_log_info "This error causes servers to fail starting properly." + echo " * To fix this issue, run the following command as root:" + fn_script_log_info "To fix this issue, run the following command as root:" + echo " chmod a+rx /sys /sys/class /sys/class/net" fn_script_log "chmod a+rx /sys /sys/class /sys/class/net" sleep 1 core_exit.sh @@ -201,8 +203,6 @@ fn_sys_perm_error_process(){ fn_print_error_nl "Permission error(s) found in /sys" fn_script_log_error "Permission error(s) found in /sys" sleep 1 - fn_print_information_nl "This error causes servers to fail starting properly" - fn_script_log_info "This error causes servers to fail starting properly." # Run the fix fn_sys_perm_errors_fix fi From 6d63023ac23f9d173542b54bd834ec690ba63817 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 19:34:06 +0100 Subject: [PATCH 22/36] fn_print_ok_nl "Automatically fixing ... --- lgsm/functions/check_permissions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check_permissions.sh b/lgsm/functions/check_permissions.sh index fa1e70f74..defde5771 100644 --- a/lgsm/functions/check_permissions.sh +++ b/lgsm/functions/check_permissions.sh @@ -185,7 +185,7 @@ fn_sys_perm_errors_fix(){ # Show the user how to fix fn_sys_perm_fix_manually_msg else - fn_print_ok "Automatically fixing /sys permissions" + fn_print_ok_nl "Automatically fixing /sys permissions" fn_script_log_pass "Permissions in /sys fixed" sleep 1 fi From 0001a2136a9f64d91b9807ea4b00dadb58ce942b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 19:55:56 +0100 Subject: [PATCH 23/36] command_wipe.sh for check_logs.sh --- lgsm/functions/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/check.sh b/lgsm/functions/check.sh index 577579171..a56bb2942 100644 --- a/lgsm/functions/check.sh +++ b/lgsm/functions/check.sh @@ -34,7 +34,7 @@ do fi done -local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh command_update.sh command_validate.sh command_update_functions.sh command_email_test.sh command_mods_install.sh command_mods_update.sh command_mods_remove.sh ) +local allowed_commands_array=( command_backup.sh command_console.sh command_debug.sh command_details.sh command_unreal2_maps.sh command_ut99_maps.sh command_monitor.sh command_start.sh command_stop.sh command_update.sh command_validate.sh command_update_functions.sh command_email_test.sh command_mods_install.sh command_mods_update.sh command_mods_remove.sh command_wipe.sh ) for allowed_command in "${allowed_commands_array[@]}" do if [ "${allowed_command}" == "${function_selfname}" ]; then From e3dc66aeb2dba47e3670989d64ce51bdda3c010b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 20:01:18 +0100 Subject: [PATCH 24/36] 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 +} From 8240e9c93730c3789e6af1dbb2fd872ecf6428aa Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 20:24:54 +0100 Subject: [PATCH 25/36] should be working, needs logging & proper output --- lgsm/functions/command_wipe.sh | 75 +++++++++++++++++++++++++--------- 1 file changed, 56 insertions(+), 19 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 339d9d726..ec9871108 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -3,7 +3,7 @@ # Author: Daniel Gibbs # Contributor: UltimateByte # 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 commandaction="wipe data" @@ -14,25 +14,62 @@ 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(){ + # Rust Wipe + if [ "${gamename}" == "Rust" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then + echo " * Any user, storage, and map data will be erased." + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + 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(){ - check_status.sh - if [ "${status}" != "0" ]; then - exitbypass=1 - command_stop.sh - fn_validation - exitbypass=1 - command_start.sh -else - fn_validation -fi + check_status.sh + if [ "${status}" != "0" ]; then + exitbypass=1 + command_stop.sh + fn_wipe_server_remove_files + exitbypass=1 + command_start.sh + else + fn_wipe_server_remove_files + fi + echo "Server Wiped" } + +fn_wipe_server From 526402adc16c3d30c2dccae1be96bb451e683c0d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Fri, 27 Jan 2017 20:33:36 +0100 Subject: [PATCH 26/36] missing $ --- lgsm/functions/command_wipe.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index ec9871108..1b90bd9eb 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -17,7 +17,7 @@ fn_print_header fn_wipe_server(){ # Rust Wipe if [ "${gamename}" == "Rust" ]; then - if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then + if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then echo " * Any user, storage, and map data will be erased." while true; do read -e -i "y" -p "Continue? [Y/n]" yn @@ -42,7 +42,7 @@ fn_wipe_server(){ # Removes files to wipe server fn_wipe_server_remove_files(){ if [ "${gamename}" == "Rust" ]; then - if [ -n "$(find "{serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then + if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then echo "Removing map" rm -f "${serveridentitydir}/proceduralmap*.sav" fi From 2da83d47a7d223db627b269bfdf6ba9a0f7ca1c7 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 04:53:39 +0100 Subject: [PATCH 27/36] Attempt for better logging and outputs --- lgsm/functions/command_wipe.sh | 112 +++++++++++++++++++++------------ 1 file changed, 71 insertions(+), 41 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 1b90bd9eb..e54969b47 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -6,70 +6,100 @@ # Description: Wipes server data, useful after updates for some games like Rust local commandname="WIPE" -local commandaction="wipe data" +local commandaction="data wipe" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh - fn_print_header +fn_scripg_log "Entering ${gamename} ${commandaction}" -# Checks if there is something to wipe -fn_wipe_server(){ - # Rust Wipe - if [ "${gamename}" == "Rust" ]; then - if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then - echo " * Any user, storage, and map data will be erased." - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - 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 +# Process to server wipe +fn_wipe_server_process(){ + check_status.sh + if [ "${status}" != "0" ]; then + exitbypass=1 + command_stop.sh + fn_wipe_server_remove_files + exitbypass=1 + command_start.sh else - echo "Wipe is not available" + fn_wipe_server_remove_files + fi + echo "server data wiped" + fn_script_log "server data wiped." +} + +# Provides an exit code upon error +fn_wipe_exit_code(){ + ((exitcode=$?)) + if [ ${exitcode} -ne 0 ]; then + fn_script_log_fatal "${currentaction}" core_exit.sh + else + fn_print_ok_eol_nl fi } # Removes files to wipe server fn_wipe_server_remove_files(){ + # Rust Wipe if [ "${gamename}" == "Rust" ]; then if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then - echo "Removing map" + currentaction="Removing map ${serveridentitydir}/proceduralmap*.sav" + echo -en "${currentaction}" + fn_script_log "${currentaction}" rm -f "${serveridentitydir}/proceduralmap*.sav" + fn_wipe_exit_code fi if [ -d "${serveridentitydir}/user" ]; then - echo "Removing users data" + currentaction="Removing user ${serveridentitydir}/user" + echo -en "${currentaction}" + fn_script_log "${currentaction}" rm -rf "${serveridentitydir}/user" + fn_wipe_exit_code fi if [ -d "${serveridentitydir}/storage" ]; then - echo "Removing storage data" + currentaction="Removing storage ${serveridentitydir}/storage" + echo -en "${currentaction}" + fn_script_log "${currentaction}" rm -rf "${serveridentitydir}/storage" + fn_wipe_exit_code + fi + if [ -d "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then + currentaction="Removing storage ${serveridentitydir}/Log.*.txt" + echo -en "${currentaction}" + fn_script_log "${currentaction}" + rm -f "${serveridentitydir}/Log.*.txt" + fn_wipe_exit_code fi + # You can add an "elif" here to add another game or engine fi } -# Process to server wipe -fn_wipe_server_process(){ - check_status.sh - if [ "${status}" != "0" ]; then - exitbypass=1 - command_stop.sh - fn_wipe_server_remove_files - exitbypass=1 - command_start.sh - else - 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 "Log.*.txt")" ]; then + fn_print_warning_nl "Any user, storage, log and map data from ${serveridentitydir} will be erased." + while true; do + read -e -i "y" -p "Continue? [Y/n]" yn + case $yn in + [Yy]* ) break;; + [Nn]* ) echo Exiting; core_exit.sh;; + * ) echo "Please answer yes or no.";; + esac + done + fn_script_log_info "User selects to erase any user, storage, log and map data from ${serveridentitydir}" + fn_wipe_server_process + else + fn_print_information "No data to wipe was found" + fn_script_log_info "No data to wipe was found." + core_exit.sh fi - echo "Server Wiped" -} - -fn_wipe_server +# You can add an "elif" here to add another game or engine +else + # Game not listed + fn_print_information "Wipe is not available for this game" + fn_script_log_info "Wipe is not available for this game." + core_exit.sh +fi From 9c7e9057071719da0d52b4b0140a98d1f8022039 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 04:54:04 +0100 Subject: [PATCH 28/36] 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 e54969b47..536655fcb 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -11,7 +11,7 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh fn_print_header -fn_scripg_log "Entering ${gamename} ${commandaction}" +fn_script_log "Entering ${gamename} ${commandaction}" # Process to server wipe fn_wipe_server_process(){ From fb8c4c93c7d63bab06e9d7d1d366c79d5688d995 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:04:56 +0100 Subject: [PATCH 29/36] sleeps & better outputs --- lgsm/functions/command_wipe.sh | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 536655fcb..11c5b920a 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -45,32 +45,40 @@ fn_wipe_server_remove_files(){ # Rust Wipe if [ "${gamename}" == "Rust" ]; then if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then - currentaction="Removing map ${serveridentitydir}/proceduralmap*.sav" - echo -en "${currentaction}" + currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap*.sav" + echo -en "Removing map proceduralmap*.sav file(s)..." + sleep 1 fn_script_log "${currentaction}" rm -f "${serveridentitydir}/proceduralmap*.sav" fn_wipe_exit_code + sleep 0.5 fi if [ -d "${serveridentitydir}/user" ]; then - currentaction="Removing user ${serveridentitydir}/user" - echo -en "${currentaction}" + currentaction="Removing user directory: ${serveridentitydir}/user" + echo -en "Removing user directory..." + sleep 1 fn_script_log "${currentaction}" rm -rf "${serveridentitydir}/user" fn_wipe_exit_code + sleep 0.5 fi if [ -d "${serveridentitydir}/storage" ]; then - currentaction="Removing storage ${serveridentitydir}/storage" - echo -en "${currentaction}" + currentaction="Removing storage directory: ${serveridentitydir}/storage" + echo -en "Removing storage directory..." + sleep 1 fn_script_log "${currentaction}" rm -rf "${serveridentitydir}/storage" fn_wipe_exit_code + sleep 0.5 fi if [ -d "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then - currentaction="Removing storage ${serveridentitydir}/Log.*.txt" - echo -en "${currentaction}" + currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" + echo -en "Removing Log files..." + sleep 1 fn_script_log "${currentaction}" rm -f "${serveridentitydir}/Log.*.txt" fn_wipe_exit_code + sleep 0.5 fi # You can add an "elif" here to add another game or engine fi @@ -90,10 +98,12 @@ if [ "${gamename}" == "Rust" ]; then esac done fn_script_log_info "User selects to erase any user, storage, log and map data from ${serveridentitydir}" + sleep 1 fn_wipe_server_process else fn_print_information "No data to wipe was found" fn_script_log_info "No data to wipe was found." + sleep 1 core_exit.sh fi # You can add an "elif" here to add another game or engine @@ -101,5 +111,6 @@ else # Game not listed fn_print_information "Wipe is not available for this game" fn_script_log_info "Wipe is not available for this game." + sleep 1 core_exit.sh fi From 70cc6996a81ef07029e3e2edaa67b01d9e981c13 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:11:06 +0100 Subject: [PATCH 30/36] various improvements --- lgsm/functions/command_wipe.sh | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 11c5b920a..4ff3ad94f 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -44,14 +44,17 @@ fn_wipe_exit_code(){ fn_wipe_server_remove_files(){ # Rust Wipe if [ "${gamename}" == "Rust" ]; then - if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]; then - currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap*.sav" - echo -en "Removing map proceduralmap*.sav file(s)..." + if [ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap.*.sav")" ]; then + currentaction="Removing map file(s): ${serveridentitydir}/proceduralmap.*.sav" + echo -en "Removing map proceduralmap.*.sav file(s)..." sleep 1 fn_script_log "${currentaction}" - rm -f "${serveridentitydir}/proceduralmap*.sav" + rm -f "${serveridentitydir}/proceduralmap.*.sav" fn_wipe_exit_code sleep 0.5 + else + fn_print_information "No map file to remove" + fn_script_log_info "No map file to remove." fi if [ -d "${serveridentitydir}/user" ]; then currentaction="Removing user directory: ${serveridentitydir}/user" @@ -61,6 +64,9 @@ fn_wipe_server_remove_files(){ rm -rf "${serveridentitydir}/user" fn_wipe_exit_code sleep 0.5 + else + fn_print_information "No user directory to remove" + fn_script_log_info "No user directory to remove." fi if [ -d "${serveridentitydir}/storage" ]; then currentaction="Removing storage directory: ${serveridentitydir}/storage" @@ -70,8 +76,11 @@ fn_wipe_server_remove_files(){ rm -rf "${serveridentitydir}/storage" fn_wipe_exit_code sleep 0.5 + else + fn_print_information "No storage directory to remove" + fn_script_log_info "No storage directory to remove." fi - if [ -d "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then + if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" echo -en "Removing Log files..." sleep 1 @@ -79,6 +88,9 @@ fn_wipe_server_remove_files(){ rm -f "${serveridentitydir}/Log.*.txt" fn_wipe_exit_code sleep 0.5 + else + fn_print_information "No log files to remove" + fn_script_log_info "No log files to remove." fi # You can add an "elif" here to add another game or engine fi From fe7ac7d6b6d5b4682c6dc91182bd6023b94a657b Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:17:44 +0100 Subject: [PATCH 31/36] wildcard appear not to work for "rm" command --- lgsm/functions/command_wipe.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 4ff3ad94f..1537341ac 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -49,11 +49,11 @@ fn_wipe_server_remove_files(){ echo -en "Removing map proceduralmap.*.sav file(s)..." sleep 1 fn_script_log "${currentaction}" - rm -f "${serveridentitydir}/proceduralmap.*.sav" + find "${serveridentitydir}" -type f -name "proceduralmap.*.sav" -delete fn_wipe_exit_code sleep 0.5 else - fn_print_information "No map file to remove" + fn_print_information_nl "No map file to remove" fn_script_log_info "No map file to remove." fi if [ -d "${serveridentitydir}/user" ]; then @@ -65,7 +65,7 @@ fn_wipe_server_remove_files(){ fn_wipe_exit_code sleep 0.5 else - fn_print_information "No user directory to remove" + fn_print_information_nl "No user directory to remove" fn_script_log_info "No user directory to remove." fi if [ -d "${serveridentitydir}/storage" ]; then @@ -77,7 +77,7 @@ fn_wipe_server_remove_files(){ fn_wipe_exit_code sleep 0.5 else - fn_print_information "No storage directory to remove" + fn_print_information_nl "No storage directory to remove" fn_script_log_info "No storage directory to remove." fi if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then @@ -85,11 +85,11 @@ fn_wipe_server_remove_files(){ echo -en "Removing Log files..." sleep 1 fn_script_log "${currentaction}" - rm -f "${serveridentitydir}/Log.*.txt" + find "${serveridentitydir}" -type f -name "Log.*.txt" -delete fn_wipe_exit_code sleep 0.5 else - fn_print_information "No log files to remove" + fn_print_information_nl "No log files to remove" fn_script_log_info "No log files to remove." fi # You can add an "elif" here to add another game or engine From 95ad518e3b74e5c7c247e1be7b3acb006b57408a Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:18:38 +0100 Subject: [PATCH 32/36] some more sleeps --- lgsm/functions/command_wipe.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 1537341ac..56e28df55 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -55,6 +55,7 @@ fn_wipe_server_remove_files(){ else fn_print_information_nl "No map file to remove" fn_script_log_info "No map file to remove." + sleep 0.5 fi if [ -d "${serveridentitydir}/user" ]; then currentaction="Removing user directory: ${serveridentitydir}/user" @@ -67,6 +68,7 @@ fn_wipe_server_remove_files(){ else fn_print_information_nl "No user directory to remove" fn_script_log_info "No user directory to remove." + sleep 0.5 fi if [ -d "${serveridentitydir}/storage" ]; then currentaction="Removing storage directory: ${serveridentitydir}/storage" @@ -79,6 +81,7 @@ fn_wipe_server_remove_files(){ else fn_print_information_nl "No storage directory to remove" fn_script_log_info "No storage directory to remove." + sleep 0.5 fi if [ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then currentaction="Removing log files: ${serveridentitydir}/Log.*.txt" @@ -91,6 +94,7 @@ fn_wipe_server_remove_files(){ else fn_print_information_nl "No log files to remove" fn_script_log_info "No log files to remove." + sleep 0.5 fi # You can add an "elif" here to add another game or engine fi From 20314d09b298a790300cfd4e7914f7c16334cf55 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:19:04 +0100 Subject: [PATCH 33/36] new liners --- lgsm/functions/command_wipe.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 56e28df55..fd9306dd3 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -117,7 +117,7 @@ if [ "${gamename}" == "Rust" ]; then sleep 1 fn_wipe_server_process else - fn_print_information "No data to wipe was found" + fn_print_information_nl "No data to wipe was found" fn_script_log_info "No data to wipe was found." sleep 1 core_exit.sh @@ -125,7 +125,7 @@ if [ "${gamename}" == "Rust" ]; then # You can add an "elif" here to add another game or engine else # Game not listed - fn_print_information "Wipe is not available for this game" + fn_print_information_nl "Wipe is not available for this game" fn_script_log_info "Wipe is not available for this game." sleep 1 core_exit.sh From 69e20bec520e71ac0f43786847f803f763433395 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:22:42 +0100 Subject: [PATCH 34/36] rconweb info --- Rust/rustserver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rust/rustserver b/Rust/rustserver index aa740f8b1..acd9a9590 100644 --- a/Rust/rustserver +++ b/Rust/rustserver @@ -29,7 +29,7 @@ ip="0.0.0.0" port="28015" rconport="28016" rconpassword="CHANGE_ME" -rconweb="1" +rconweb="1" # Value is: 1 for Facepunch's web panel; 0 for RCON tools like Rusty or Rustadmin maxplayers="50" # Advanced Start Settings seed="" # default random; range : 1 to 2147483647 ; used to change or reproduce a procedural map From 616be584d8b2de0dd0b161e3e46bec757be4b774 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:32:13 +0100 Subject: [PATCH 35/36] always end with core_exit.sh --- lgsm/functions/command_wipe.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index fd9306dd3..440c8080e 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -130,3 +130,5 @@ else sleep 1 core_exit.sh fi + +core_exit.sh From 873a8d3f5bf4c2da517433e04a79be541c3d4845 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Sat, 28 Jan 2017 05:59:07 +0100 Subject: [PATCH 36/36] typo on advdupe 2 --- lgsm/functions/mods_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/mods_list.sh b/lgsm/functions/mods_list.sh index 8b0beb604..0be15b08b 100644 --- a/lgsm/functions/mods_list.sh +++ b/lgsm/functions/mods_list.sh @@ -61,7 +61,7 @@ mod_info_utime=( MOD "utime" "UTime" "https://github.com/TeamUlysses/utime/archi mod_info_uclip=( MOD "uclip" "UClip" "https://github.com/TeamUlysses/uclip/archive/master.zip" "uclip-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://ulyssesmod.net" "An alternative to noclip" ) mod_info_acf=( MOD "acf" "Armoured Combat Framework" "https://github.com/nrlulz/ACF/archive/master.zip" "acf-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "acf-master/lua/acf/shared/guns;" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/nrlulz/ACF" "Realistic Wepons & Engines" ) mod_info_acf_missiles=( MOD "acfmissiles" "ACF Missiles" "https://github.com/Bubbus/ACF-Missiles/archive/master.zip" "acf-missiles-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "https://github.com/Bubbus/ACF-Missiles" "More missiles for ACF" ) -mod_info_acf_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) +mod_info_advdupe2=( MOD "advdupe2" "Advanced Duplicator 2" "https://github.com/wiremod/advdupe2/archive/master.zip" "advdupe2-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://www.wiremod.com" "Save your constructions" ) mod_info_darkrp=( MOD "darkrp" "DarkRP" "https://github.com/FPtje/DarkRP/archive/master.zip" "darkrp-master.zip" "0" "LowercaseOn" "${systemdir}/addons" "OVERWRITE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Most popular gamemode" ) mod_info_darkrpmodification=( MOD "darkrpmodification" "DarkRP Modification" "https://github.com/FPtje/darkrpmodification/archive/master.zip" "darkrpmodification-master.zip" "0" "LowercaseOff" "${systemdir}/addons" "NOUPDATE" "ENGINES" "Garry's Mod;" "NOTGAMES" "http://darkrp.com" "Customize DarkRP settings" ) # Oxidemod