20 changed files with 380 additions and 93 deletions
@ -25,9 +25,6 @@ email="[email protected]" |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
|
|||
# Pushover |
|||
#Push alot |
|||
|
|||
# Steam login |
|||
steamuser="anonymous" |
|||
steampass="" |
|||
|
@ -2,6 +2,7 @@ |
|||
# Mumble |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Contributor: UltimateByte |
|||
# Website: https://gameservermanagers.com |
|||
if [ -f ".dev-debug" ]; then |
|||
exec 5>dev-debug.log |
|||
@ -9,7 +10,7 @@ if [ -f ".dev-debug" ]; then |
|||
set -x |
|||
fi |
|||
|
|||
version="210516" |
|||
version="290716" |
|||
|
|||
#### Variables #### |
|||
|
|||
@ -25,6 +26,23 @@ email="[email protected]" |
|||
pushbulletalert="off" |
|||
pushbullettoken="accesstoken" |
|||
|
|||
# Start Variables |
|||
updateonstart="off" |
|||
|
|||
fn_parms(){ |
|||
parms="-fg -ini ${servercfgfullpath}" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Github Branch Select |
|||
# Allows for the use of different function files |
|||
# from a different repo and/or branch. |
|||
githubuser="dgibbs64" |
|||
githubrepo="linuxgsm" |
|||
githubbranch="master" |
|||
|
|||
|
|||
# Server Details |
|||
gamename="Mumble" |
|||
servicename="mumble-server" |
|||
@ -46,7 +64,7 @@ backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
logdir="${rootdir}/log" |
|||
gamelogdir="${rootdir}/log" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
consolelogging="on" |
|||
@ -58,17 +76,6 @@ emaillog="${scriptlogdir}/${servicename}-email.log" |
|||
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
|
|||
fn_parms(){ |
|||
parms="-fg -ini ${servercfgfullpath}" |
|||
} |
|||
|
|||
# Github Branch Select |
|||
# Allows for the use of different function files |
|||
# from a different repo and/or branch. |
|||
githubuser="dgibbs64" |
|||
githubrepo="linuxgsm" |
|||
githubbranch="master" |
|||
|
|||
##### Script ##### |
|||
# Do not edit |
|||
|
|||
|
@ -0,0 +1,165 @@ |
|||
#!/bin/bash |
|||
# LGSM update_mumble.sh function |
|||
# Author: Daniel Gibbs |
|||
# Contributor: UltimateByte |
|||
# Website: https://gameservermanagers.com |
|||
# Description: Handles updating of mumble servers. |
|||
|
|||
local commandname="UPDATE" |
|||
local commandaction="Update" |
|||
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|||
|
|||
fn_update_mumble_dl(){ |
|||
fn_fetch_file "https://github.com/mumble-voip/mumble/releases/download/${availablebuild}/murmur-static_${mumblearch}-${availablebuild}.tar.bz2" "${lgsmdir}/tmp" "murmur-static_${mumblearch}-${availablebuild}.tar.bz2" |
|||
fn_dl_extract "${lgsmdir}/tmp" "murmur-static_${mumblearch}-${availablebuild}.tar.bz2" "${lgsmdir}/tmp" |
|||
echo -e "copying to ${filesdir}...\c" |
|||
fn_script_log "Copying to ${filesdir}" |
|||
cp -R "${lgsmdir}/tmp/murmur-static_${mumblearch}-${availablebuild}/"* "${filesdir}" |
|||
local exitcode=$? |
|||
if [ ${exitcode} -eq 0 ]; then |
|||
fn_print_ok_eol_nl |
|||
else |
|||
fn_print_fail_eol_nl |
|||
fi |
|||
} |
|||
|
|||
fn_update_mumble_currentbuild(){ |
|||
# Gets current build info |
|||
# Checks if current build info is available. If it fails, then a server restart will be forced to generate logs. |
|||
if [ ! -f "${consolelogdir}/${servicename}-console.log" ]; then |
|||
fn_print_error "Checking for update: GitHub" |
|||
sleep 1 |
|||
fn_print_error_nl "Checking for update: GitHub: No logs with server version found" |
|||
fn_script_log_error "Checking for update: GitHub: No logs with server version found" |
|||
sleep 1 |
|||
fn_print_info_nl "Checking for update: GitHub: Forcing server restart" |
|||
fn_script_log_info "Checking for update: GitHub: Forcing server restart" |
|||
sleep 1 |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
exitbypass=1 |
|||
command_start.sh |
|||
sleep 1 |
|||
# Check again and exit on failure. |
|||
if [ ! -f "${consolelogdir}/${servicename}-console.log" ]; then |
|||
fn_print_fail_nl "Checking for update: GitHub: Still No logs with server version found" |
|||
fn_script_log_fatal "Checking for update: GitHub: Still No logs with server version found" |
|||
core_exit.sh |
|||
fi |
|||
fi |
|||
|
|||
# Get current build from logs |
|||
currentbuild=$(cat "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null | sort | egrep 'Murmur ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | awk '{print $4}') |
|||
if [ -z "${currentbuild}" ]; then |
|||
fn_print_error_nl "Checking for update: GitHub: Current build version not found" |
|||
fn_script_log_error "Checking for update: GitHub: Current build version not found" |
|||
sleep 1 |
|||
fn_print_info_nl "Checking for update: GitHub: Forcing server restart" |
|||
fn_script_log_info "Checking for update: GitHub: Forcing server restart" |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
exitbypass=1 |
|||
command_start.sh |
|||
currentbuild=$(cat "${consolelogdir}"/"${servicename}"-console.log 2> /dev/null | sort | egrep 'Murmur ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | awk '{print $4}') |
|||
if [ -z "${currentbuild}" ]; then |
|||
fn_print_fail_nl "Checking for update: GitHub: Current build version still not found" |
|||
fn_script_log_fatal "Checking for update: GitHub: Current build version still not found" |
|||
core_exit.sh |
|||
fi |
|||
fi |
|||
} |
|||
|
|||
fn_update_mumble_arch(){ |
|||
# Mumble is x86 only for now |
|||
mumblearch="x86" |
|||
} |
|||
|
|||
fn_update_mumble_availablebuild(){ |
|||
# Gets latest build info. |
|||
availablebuild=$(curl -s https://api.github.com/repos/mumble-voip/mumble/releases/latest | grep 'murmur-static_x86.*\.bz2"' | tail -1 | awk -F"/" '{ print $8 }') |
|||
sleep 1 |
|||
|
|||
# Checks if availablebuild variable has been set |
|||
if [ -z "${availablebuild}" ]; then |
|||
fn_print_fail "Checking for update: GitHub" |
|||
sleep 1 |
|||
fn_print_fail "Checking for update: GitHub: Not returning version info" |
|||
fn_script_log_fatal "Failure! Checking for update: GitHub: Not returning version info" |
|||
core_exit.sh |
|||
else |
|||
fn_print_ok_nl "Checking for update: GitHub" |
|||
fn_script_log_pass "Checking for update: GitHub" |
|||
sleep 1 |
|||
fi |
|||
} |
|||
|
|||
fn_update_mumble_compare(){ |
|||
# Removes dots so if can compare version numbers |
|||
currentbuilddigit=$(echo "${currentbuild}"|tr -cd '[:digit:]') |
|||
availablebuilddigit=$(echo "${availablebuild}"|tr -cd '[:digit:]') |
|||
|
|||
if [ "${currentbuilddigit}" -ne "${availablebuilddigit}" ]; then |
|||
echo -e "\n" |
|||
echo -e "Update available:" |
|||
sleep 1 |
|||
echo -e " Current build: ${red}${currentbuild} ${mumblearch}${default}" |
|||
echo -e " Available build: ${green}${availablebuild} ${mumblearch}${default}" |
|||
echo -e "" |
|||
sleep 1 |
|||
echo "" |
|||
echo -en "Applying update.\r" |
|||
sleep 1 |
|||
echo -en "Applying update..\r" |
|||
sleep 1 |
|||
echo -en "Applying update...\r" |
|||
sleep 1 |
|||
echo -en "\n" |
|||
fn_script_log "Update available" |
|||
fn_script_log "Current build: ${currentbuild}" |
|||
fn_script_log "Available build: ${availablebuild}" |
|||
fn_script_log "${currentbuild} > ${availablebuild}" |
|||
|
|||
unset updateonstart |
|||
|
|||
check_status.sh |
|||
if [ "${status}" == "0" ]; then |
|||
fn_update_mumble_dl |
|||
exitbypass=1 |
|||
command_start.sh |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
else |
|||
exitbypass=1 |
|||
command_stop.sh |
|||
fn_update_mumble_dl |
|||
exitbypass=1 |
|||
command_start.sh |
|||
fi |
|||
alert="update" |
|||
alert.sh |
|||
else |
|||
echo -e "\n" |
|||
echo -e "No update available:" |
|||
echo -e " Current version: ${green}${currentbuild}${default}" |
|||
echo -e " Available version: ${green}${availablebuild}${default}" |
|||
echo -e "" |
|||
fn_print_ok_nl "No update available" |
|||
fn_script_log_info "Current build: ${currentbuild}" |
|||
fn_script_log_info "Available build: ${availablebuild}" |
|||
fi |
|||
} |
|||
|
|||
|
|||
fn_update_mumble_arch |
|||
if [ "${installer}" == "1" ]; then |
|||
fn_update_mumble_availablebuild |
|||
fn_update_mumble_dl |
|||
else |
|||
# Checks for server update from github.com |
|||
fn_print_dots "Checking for update: github.com" |
|||
fn_script_log_info "Checking for update: github.com" |
|||
sleep 1 |
|||
fn_update_mumble_currentbuild |
|||
fn_update_mumble_availablebuild |
|||
fn_update_mumble_compare |
|||
fi |
Loading…
Reference in new issue