| 1234567891011121314151617 |
- #!/bin/bash
- # LGSM check_config.sh function
- # Author: Daniel Gibbs
- # Website: http://gameservermanagers.com
- lgsm_version="060116"
- # Description: If server config missing warn user.
- if [ ! -e "${servercfgfullpath}" ]; then
- if [ "${gamename}" != "Hurtworld" ]; then
- fn_printwarnnl "Config file missing!"
- echo "${servercfgfullpath}"
- fn_scriptlog "Configuration file missing!"
- fn_scriptlog "${servercfgfullpath}"
- sleep 2
- fi
- fi
|