Browse Source
* Updated debug mode * Monitor changes to monitor to clarify how to activate it fixed issue #156pull/173/head
23 changed files with 407 additions and 264 deletions
@ -3,7 +3,7 @@ |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: http://danielgibbs.co.uk |
|||
# Version: 050814 |
|||
# Version: 100914 |
|||
|
|||
#### Variables #### |
|||
|
|||
@ -12,7 +12,7 @@ |
|||
emailnotification="off" |
|||
email="[email protected]" |
|||
|
|||
# Directorys |
|||
# Directories |
|||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" |
|||
selfname="$0" |
|||
lockselfname=$(echo ".${servicename}.lock") |
|||
@ -171,18 +171,26 @@ fn_debugserver(){ |
|||
fn_rootcheck |
|||
fn_syscheck |
|||
fn_autoip |
|||
fn_distro |
|||
fn_uptime |
|||
fn_load |
|||
fn_parms |
|||
echo "" |
|||
echo "${gamename} Debug" |
|||
echo "============================" |
|||
echo "" |
|||
echo -e "Use for identifying server issues only!" |
|||
echo -e "Press CTRL+c to drop out of debug mode" |
|||
echo -e "\e[0;31mWARNING!\e[0;39m If ${servicename} is already running it will be stopped" |
|||
echo -e "Distro: ${os}" |
|||
echo -e "Arch: ${arch}" |
|||
echo -e "Kernel: ${kernel}" |
|||
echo -e "Hostname: $HOSTNAME" |
|||
echo "" |
|||
echo "Start parameters:" |
|||
echo ${parms} |
|||
echo "" |
|||
echo -e "Use for identifying server issues only!" |
|||
echo -e "Press CTRL+c to drop out of debug mode" |
|||
echo -e "\e[0;31mWARNING!\e[0;39m If ${servicename} is already running it will be stopped" |
|||
echo "" |
|||
while true; do |
|||
read -p "Continue? [y/N]" yn |
|||
case $yn in |
|||
@ -446,14 +454,15 @@ fn_monitorserver(){ |
|||
fn_rootcheck |
|||
fn_syscheck |
|||
fn_autoip |
|||
fn_printdots "Monitoring ${servicename}: ${servername}" |
|||
sleep 1 |
|||
if [ ! -f ${lockselfname} ]; then |
|||
fn_printinfo "Monitoring ${servicename}: No lock file found: Monitor disabled" |
|||
sleep 1 |
|||
echo -en "\n" |
|||
echo "To enable monitor run ${selfname} start" |
|||
exit |
|||
fi |
|||
fn_printdots "Monitoring ${servicename}: ${servername}" |
|||
sleep 1 |
|||
fn_scriptlog "Monitoring ${servername}" |
|||
updatecheck=$(ps -ef|grep "${selfname} update"|grep -v grep|wc -l) |
|||
if [ "${updatecheck}" = "0" ]; then |
|||
@ -791,7 +800,7 @@ fn_retryinstall(){ |
|||
while true; do |
|||
read -p "Retry install? [y/N]" yn |
|||
case $yn in |
|||
[Yy]* ) fn_install;; |
|||
[Yy]* ) fn_install; exit;; |
|||
[Nn]* ) echo Exiting; exit;; |
|||
* ) echo "Please answer yes or no.";; |
|||
esac |
|||
|
@ -3,7 +3,7 @@ |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: http://danielgibbs.co.uk |
|||
# Version: 050814 |
|||
# Version: 100914 |
|||
|
|||
#### Variables #### |
|||
|
|||
@ -12,7 +12,7 @@ |
|||
emailnotification="off" |
|||
email="[email protected]" |
|||
|
|||
# Directorys |
|||
# Directories |
|||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd )" |
|||
selfname="$0" |
|||
filesdir="${rootdir}/serverfiles" |
|||
@ -170,18 +170,26 @@ fn_debugserver(){ |
|||
fn_rootcheck |
|||
fn_syscheck |
|||
fn_autoip |
|||
fn_distro |
|||
fn_uptime |
|||
fn_load |
|||
fn_parms |
|||
echo "" |
|||
echo "${gamename} Debug" |
|||
echo "============================" |
|||
echo "" |
|||
echo -e "Use for identifying server issues only!" |
|||
echo -e "Press CTRL+c to drop out of debug mode" |
|||
echo -e "\e[0;31mWARNING!\e[0;39m If ${servicename} is already running it will be stopped" |
|||
echo -e "Distro: ${os}" |
|||
echo -e "Arch: ${arch}" |
|||
echo -e "Kernel: ${kernel}" |
|||
echo -e "Hostname: $HOSTNAME" |
|||
echo "" |
|||
echo "Start parameters:" |
|||
echo ${parms} |
|||
echo "" |
|||
echo -e "Use for identifying server issues only!" |
|||
echo -e "Press CTRL+c to drop out of debug mode" |
|||
echo -e "\e[0;31mWARNING!\e[0;39m If ${servicename} is already running it will be stopped" |
|||
echo "" |
|||
while true; do |
|||
read -p "Continue? [y/N]" yn |
|||
case $yn in |
|||
@ -445,14 +453,15 @@ fn_monitorserver(){ |
|||
fn_rootcheck |
|||
fn_syscheck |
|||
fn_autoip |
|||
fn_printdots "Monitoring ${servicename}: ${servername}" |
|||
sleep 1 |
|||
if [ ! -f ${lockselfname} ]; then |
|||
fn_printinfo "Monitoring ${servicename}: No lock file found: Monitor disabled" |
|||
sleep 1 |
|||
echo -en "\n" |
|||
echo "To enable monitor run ${selfname} start" |
|||
exit |
|||
fi |
|||
fn_printdots "Monitoring ${servicename}: ${servername}" |
|||
sleep 1 |
|||
fn_scriptlog "Monitoring ${servername}" |
|||
updatecheck=$(ps -ef|grep "${selfname} update"|grep -v grep|wc -l) |
|||
if [ "${updatecheck}" = "0" ]; then |
|||
@ -772,7 +781,7 @@ fn_retryinstall(){ |
|||
while true; do |
|||
read -p "Retry install? [y/N]" yn |
|||
case $yn in |
|||
[Yy]* ) fn_install;; |
|||
[Yy]* ) fn_install; exit;; |
|||
[Nn]* ) echo Exiting; exit;; |
|||
* ) echo "Please answer yes or no.";; |
|||
esac |
|||
|
Loading…
Reference in new issue