diff --git a/functions/fn_deps_detect b/functions/fn_deps_detect new file mode 100644 index 000000000..0a0525336 --- /dev/null +++ b/functions/fn_deps_detect @@ -0,0 +1,35 @@ +#!/bin/bash +# LGSM fn_dep_detect function +# Author: Daniel Gibbs +# Website: http://gameservermanagers.com +# Version: 200615 + +# Description: Detects dependencies the server binary requires. + +local modulename="Backup" +fn_check_root +fn_check_systemdir +cd ${executabledir} +readelf -d ${executable} |grep NEEDED|awk '{ print $5 }'|sed 's/\[//g'|sed 's/\]//g' > ${rootdir}/.depdetect_readelf + + +echo "yum install " > ${rootdir}/.depdetect_centos +echo "apt-get install " > ${rootdir}/.depdetect_ubuntu +echo "apt-get install " > ${rootdir}/.depdetect_debian +while read lib; do + sharedlib=${lib} + if [ ${lib} == "libm.so.6" ]||[ ${lib} == "libc.so.6" ]||[ ${lib} == "libpthread.so.0" ]||[ ${lib} == "libdl.so.2" ]||[ ${lib} == "libnsl.so.1" ];then + echo "glibc.i386" >> ${rootdir}/.depdetect_centos_list + echo "lib32gcc1" >> ${rootdir}/.depdetect_ubuntu_list + echo "lib32gcc1" >> ${rootdir}/.depdetect_debian_list + elif [ ${lib} == "libstdc++.so.6" ];then + echo "libstdc++.i686" >> ${rootdir}/.depdetect_centos_list + echo "libstdc++6:i386" >> ${rootdir}/.depdetect_ubuntu_list + echo "libstdc++6:i386" >> ${rootdir}/.depdetect_debian_list + else + echo "${lib}" >> ${rootdir}/.depdetect_unknown + fi +done < ${rootdir}/.depdetect_readelf +uniq ${rootdir}/.depdetect_centos_list > ${rootdir}/.depdetect_centos_list_uniq +uniq ${rootdir}/.depdetect_ubuntu_list > ${rootdir}/.depdetect_ubuntu_list_uniq +uniq ${rootdir}/.depdetect_debian_list > ${rootdir}/.depdetect_debian_list_uniq \ No newline at end of file diff --git a/functions/fn_functions b/functions/fn_functions index c481251fd..505fdbcd1 100644 --- a/functions/fn_functions +++ b/functions/fn_functions @@ -2,7 +2,7 @@ # LGSM fn_functions function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 240515 +# Version: 200615 # Description: Defines all functions to allow download and execution of functions using fn_runfunction. # This function is called first before any other function. Without this file other functions would not load. @@ -91,6 +91,12 @@ fn_details_distro(){ functionfile="${FUNCNAME}" fn_runfunction } + +fn_deps_detect(){ +functionfile="${FUNCNAME}" +fn_runfunction +} + fn_email(){ functionfile="${FUNCNAME}" fn_runfunction @@ -294,4 +300,4 @@ fn_runfunction } # Calls on-screen messages -fn_messages +fn_messages \ No newline at end of file diff --git a/functions/fn_getopt b/functions/fn_getopt index 6715acc11..b459469de 100644 --- a/functions/fn_getopt +++ b/functions/fn_getopt @@ -2,7 +2,7 @@ # LGSM fn_getopt function # Author: Daniel Gibbs # Website: http://gameservermanagers.com -# Version: 250515 +# Version: 200615 # Description: getopt arguments. @@ -42,6 +42,8 @@ case "$getopt" in fn_install;; auto-install) fn_autoinstall;; + depdetect) + fn_deps_detect;; *) echo "Usage: $0 {start|stop|restart|update|force-update|update-functions|validate|monitor|email-test|details|backup|console|debug|install|auto-install}" exit 1;; @@ -73,6 +75,8 @@ case "$getopt" in fn_install;; auto-install) fn_autoinstall;; + depdetect) + fn_deps_detect;; *) echo "Usage: $0 {start|stop|restart|update|update-functions|monitor|email-test|details|backup|install|auto-install}" exit 1;; @@ -100,6 +104,8 @@ case "$getopt" in fn_console;; debug) fn_debug;; + depdetect) + fn_deps_detect;; *) echo "Usage: $0 {start|stop|restart|update-functions|monitor|email-test|backup|console|debug}" exit 1;; @@ -133,6 +139,8 @@ case "$getopt" in fn_install;; map-compressor) fn_compress_ut99maps;; + depdetect) + fn_deps_detect;; *) echo "Usage: $0 {start|stop|restart|update-functions|monitor|email-test|details|backup|console|debug|install|map-compressor}" exit 1;; @@ -179,6 +187,8 @@ case "$getopt" in fn_autoinstall;; map-compressor) fn_compress_unreal2maps;; + depdetect) + fn_deps_detect;; *) echo "Usage: $0 {start|stop|restart|update|update-functions|validate|monitor|email-test|details|backup|console|debug|install|auto-install|map-compressor}" exit 1;; @@ -213,6 +223,8 @@ case "$getopt" in fn_install;; map-compressor) fn_compress_unreal2maps;; + depdetect) + fn_deps_detect;; *) echo "Usage: $0 {start|stop|restart|update-functions|monitor|email-test|details|backup|console|debug|install|map-compressor}" exit 1;;