gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.9 KiB
121 lines
3.9 KiB
#!/bin/bash
|
|
# LGSM command_mods_uninstall.sh function
|
|
# Author: Daniel Gibbs
|
|
# Contributor: UltimateByte
|
|
# Website: https://gameservermanagers.com
|
|
# Description: Uninstall mods along with mods_list.sh and mods_core.sh.
|
|
|
|
local commandname="MODS"
|
|
local commandaction="addons/mods"
|
|
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
|
|
check.sh
|
|
mods_core.sh
|
|
|
|
fn_mods_remove_init(){
|
|
fn_print_header
|
|
echo "Remove addons/mods"
|
|
echo "================================="
|
|
# A simple function to exit if no mods were installed
|
|
# Also returns ${installedmodscount} if mods were found
|
|
fn_mods_exit_if_not_installed
|
|
# Displays installed addons to the user
|
|
fn_installed_mods_medium_list
|
|
echo ""
|
|
# Keep prompting as long as the user input doesn't correspond to an available mod
|
|
while [[ ! " ${installedmodslist[@]} " =~ " ${usermodselect} " ]]; do
|
|
echo -en "Enter a ${cyan}mod${default} to ${red}remove${default} (or exit to abort): "
|
|
read -r usermodselect
|
|
# Exit if user says exit or abort
|
|
if [ "${usermodselect}" == "exit" ]||[ "${usermodselect}" == "abort" ]; then
|
|
core_exit.sh
|
|
# Supplementary output upon invalid user input
|
|
elif [[ ! " ${availablemodscommands[@]} " =~ " ${usermodselect} " ]]; then
|
|
fn_print_error2_nl "${usermodselect} is not a valid addon/mod."
|
|
fi
|
|
done
|
|
fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}."
|
|
echo " * Any custom files/configuration will be removed."
|
|
while true; do
|
|
read -e -i "y" -p "Continue? [Y/n]" yn
|
|
case $yn in
|
|
[Yy]* ) break;;
|
|
[Nn]* ) echo Exiting; exit;;
|
|
* ) echo "Please answer yes or no.";;
|
|
esac
|
|
done
|
|
# Gives a pretty name to the user and get all mod info
|
|
currentmod="${usermodselect}"
|
|
fn_mod_get_info_from_command
|
|
# Check file list in order to make sure we're able to remove the mod (returns ${modsfilelistsize})
|
|
fn_check_files_list
|
|
|
|
}
|
|
|
|
# Uninstall the mod
|
|
fn_mod_remove_process(){
|
|
fn_script_log "Removing ${modsfilelistsize} files from ${modprettyname}"
|
|
echo -e "removing ${modprettyname}"
|
|
echo -e "* ${modsfilelistsize} files to be removed"
|
|
echo -e "* location: ${modinstalldir}"
|
|
sleep 1
|
|
# Go through every file and remove it
|
|
modfileline="1"
|
|
tput sc
|
|
while [ "${modfileline}" -le "${modsfilelistsize}" ]; do
|
|
# Current line defines current file to remove
|
|
currentfileremove="$(sed "${modfileline}q;d" "${modsdatadir}/${modcommand}-files.txt")"
|
|
# If file or directory exists, then remove it
|
|
fn_script_log "Removing: ${modinstalldir}/${currentfileremove}"
|
|
if [ -f "${modinstalldir}/${currentfileremove}" ]||[ -d "${modinstalldir}/${currentfileremove}" ]; then
|
|
rm -rf "${modinstalldir}/${currentfileremove}"
|
|
local exitcode=$?
|
|
fi
|
|
tput rc; tput el
|
|
printf "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize} : ${currentfileremove}..."
|
|
|
|
((totalfileswc++))
|
|
let modfileline=modfileline+1
|
|
done
|
|
tput rc; tput ed;
|
|
echo -ne "removing ${modprettyname} ${totalfileswc} / ${modsfilelistsize}..."
|
|
if [ ${exitcode} -ne 0 ]; then
|
|
fn_print_fail_eol_nl
|
|
core_exit.sh
|
|
else
|
|
fn_print_ok_eol_nl
|
|
fi
|
|
sleep 0.5
|
|
# Remove file list
|
|
echo -en "removing ${modcommand}-files.txt..."
|
|
sleep 0.5
|
|
fn_script_log "Removing: ${modsdatadir}/${modcommand}-files.txt"
|
|
rm -rf "${modsdatadir}/${modcommand}-files.txt"
|
|
local exitcode=$?
|
|
if [ ${exitcode} -ne 0 ]; then
|
|
fn_print_fail_eol_nl
|
|
core_exit.sh
|
|
else
|
|
fn_print_ok_eol_nl
|
|
fi
|
|
# Remove from installed mods list
|
|
echo -en "removing ${modcommand} from ${modslockfile}..."
|
|
sleep 0.5
|
|
fn_script_log "Removing: ${modcommand} from ${modslockfilefullpath}"
|
|
sed -i "/^${modcommand}$/d" "${modslockfilefullpath}"
|
|
# Post install tasks to solve potential issues
|
|
local exitcode=$?
|
|
if [ ${exitcode} -ne 0 ]; then
|
|
fn_print_fail_eol_nl
|
|
core_exit.sh
|
|
else
|
|
fn_print_ok_eol_nl
|
|
fi
|
|
fn_postuninstall_tasks
|
|
echo "${modprettyname} removed"
|
|
fn_script_log "${modprettyname} removed"
|
|
}
|
|
|
|
fn_mods_remove_init
|
|
fn_mod_remove_process
|
|
core_exit.sh
|
|
|