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