| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- #!/bin/bash
- # ARMA 3
- # Server Management Script
- # Author: Daniel Gibbs
- # Contributor: Scarsz
- # Website: http://danielgibbs.co.uk
- # Version: 010115
- #### Variables ####
- # Notification Email
- # (on|off)
- emailnotification="off"
- email="email@example.com"
- # Steam login
- steamuser="username"
- steampass="password"
- # Server IP
- ip="0.0.0.0"
- fn_parms(){
- parms="-netlog -ip=${ip} -config=${servercfg}"
- }
- #### Advanced Variables ####
- # Steam
- appid="233780"
- # Server Details
- servicename="arma3-server"
- gamename="ARMA 3"
- engine="realvirtuality"
- # Directories
- rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )"
- selfname="$0"
- lockselfname=$(echo ".${servicename}.lock")
- filesdir="${rootdir}/serverfiles"
- systemdir="${filesdir}"
- executabledir="${filesdir}"
- executable="./arma3server"
- servercfgdir="${systemdir}"
- servercfg="${servicename}.cfg"
- servercfgfullpath="${servercfgdir}/${servercfg}"
- backupdir="backups"
- # Server Details
- servername=$(grep -s hostname "${servercfgfullpath}"| grep -v //|sed -e 's/\<hostname\>//g'| tr -d '=\"; ')
- # Logging
- logdays="7"
- #gamelogdir="" # No server logs available
- scriptlogdir="${rootdir}/log/script"
- consolelogdir="${rootdir}/log/console"
- scriptlog="${scriptlogdir}/${servicename}-script.log"
- consolelog="${consolelogdir}/${servicename}-console.log"
- 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"
- ##### Script #####
- # Do not edit
- fn_install(){
- fn_rootcheck
- fn_header
- if [ -z "${autoinstall}" ]; then
- fn_serverdirectory
- fn_header
- fi
- fn_steamdl
- fn_steaminstall
- fn_steamfix
- fn_glibcfix
- fn_loginstall
- fn_getquery
- fn_serverconfig
- fn_header
- fn_details
- fn_installcomplete
- }
- fn_functions(){
- # Functions are defines in fn_functions.
- functionfile="${FUNCNAME}"
- fn_runfunction
- }
- fn_runfunction(){
- # Functions are downloaded and run with this function
- if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
- cd "${rootdir}"
- if [ ! -d "functions" ]; then
- mkdir functions
- fi
- cd functions
- echo -e "loading ${functionfile}...\c"
- wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
- chmod +x "${functionfile}"
- cd "${rootdir}"
- sleep 1
- fi
- source "${rootdir}/functions/${functionfile}"
- }
- fn_functions
- case "$1" in
- start)
- fn_startserver;;
- stop)
- fn_stopserver;;
- restart)
- fn_restartserver;;
- update)
- norestart=1;
- fn_versioncheck;;
- update-restart)
- fn_versioncheck;;
- validate)
- fn_validateserver;;
- validate-restart)
- fn_stopserver
- fn_validateserver
- fn_startserver;;
- monitor)
- fn_monitorserver;;
- email-test)
- fn_emailtest;;
- details)
- fn_details;;
- backup)
- fn_backupserver;;
- console)
- fn_console;;
- debug)
- fn_debugserver;;
- install)
- fn_install;;
- auto-install)
- fn_autoinstall;;
- *)
- echo "Usage: $0 {start|stop|restart|update|update-restart|validate|validate-restart|monitor|email-test|details|backup|console|debug|install|auto-install}"
- exit 1;;
- esac
- exit
|