Browse Source

changes

feature/dst-changes
Daniel Gibbs 2 years ago
parent
commit
4faf380423
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 8
      lgsm/modules/check_deps.sh
  2. 10
      lgsm/modules/core_dl.sh
  3. 24
      lgsm/modules/install_config.sh
  4. 1
      lgsm/modules/install_eula.sh

8
lgsm/modules/check_deps.sh

@ -336,15 +336,15 @@ fn_deps_detector() {
if [ "${commandname}" == "INSTALL" ]; then if [ "${commandname}" == "INSTALL" ]; then
if [ "$(whoami)" == "root" ]; then if [ "$(whoami)" == "root" ]; then
echo -e "" echo -e ""
echo -e "${lightyellow}Checking Dependencies as root${default}" echo -e "${bold}${lightyellow}Checking ${gamename} Dependencies as root${default}"
echo -e "=================================" echo -e "${bold}=================================${default}"
fn_print_information_nl "Checking any missing dependencies for ${gamename} server only." fn_print_information_nl "Checking any missing dependencies for ${gamename} server only."
fn_print_information_nl "This will NOT install a ${gamename} server." fn_print_information_nl "This will NOT install a ${gamename} server."
fn_sleep_time fn_sleep_time
else else
echo -e "" echo -e ""
echo -e "${lightyellow}Checking Dependencies${default}" echo -e "${bold}${lightyellow}Checking ${gamename} Dependencies${default}"
echo -e "=================================" echo -e "${bold}=================================${default}"
fi fi
fi fi

10
lgsm/modules/core_dl.sh

@ -150,16 +150,16 @@ fn_dl_steamcmd() {
# Emptys contents of the LinuxGSM tmpdir. # Emptys contents of the LinuxGSM tmpdir.
fn_clear_tmp() { fn_clear_tmp() {
echo -en "clearing LinuxGSM tmp directory..." echo -en "clearing tmp directory [ ${tmpdir} ]"
if [ -d "${tmpdir}" ]; then if [ -d "${tmpdir}" ]; then
rm -rf "${tmpdir:?}/"* rm -rf "${tmpdir:?}/"*
local exitcode=$? local exitcode=$?
if [ "${exitcode}" != 0 ]; then if [ "${exitcode}" != 0 ]; then
fn_print_error_eol_nl fn_print_error_eol_nl
fn_script_log_error "clearing LinuxGSM tmp directory" fn_script_log_error "clearing tmp directory ${tmpdir}"
else else
fn_print_ok_eol_nl fn_print_ok_eol_nl
fn_script_log_pass "clearing LinuxGSM tmp directory" fn_script_log_pass "clearing tmp directory ${tmpdir}"
fi fi
fi fi
} }
@ -397,11 +397,11 @@ fn_fetch_file() {
local exitcode="" local exitcode=""
large_files=("bz2" "gz" "zip" "jar" "xz") large_files=("bz2" "gz" "zip" "jar" "xz")
if grep -qE "(^|\s)${local_filename##*.}(\s|$)" <<< "${large_files[@]}"; then if grep -qE "(^|\s)${local_filename##*.}(\s|$)" <<< "${large_files[@]}"; then
echo -en "downloading ${local_filename}..." echo -e "downloading file [ ${local_filename} ]"
fn_sleep_time fn_sleep_time
echo -en "\033[1K"
"${curlcmd[@]}" --progress-bar "${fileurl}" 2>&1 "${curlcmd[@]}" --progress-bar "${fileurl}" 2>&1
exitcode="$?" exitcode="$?"
echo -en "downloading file [ ${local_filename} ]"
else else
echo -en "fetching ${fileurl_name} [ ${italic}${local_filename}${default} ]\c" echo -en "fetching ${fileurl_name} [ ${italic}${local_filename}${default} ]\c"
"${curlcmd[@]}" --silent --show-error "${fileurl}" 2>&1 "${curlcmd[@]}" --silent --show-error "${fileurl}" 2>&1

24
lgsm/modules/install_config.sh

@ -21,7 +21,10 @@ fn_fetch_default_config() {
echo -e "" echo -e ""
echo -e "${lightyellow}Downloading ${gamename} Configs${default}" echo -e "${lightyellow}Downloading ${gamename} Configs${default}"
echo -e "=================================" echo -e "================================="
echo -e "default configs from https://github.com/GameServerManagers/Game-Server-Configs" echo -e "Default configs are downloaded from:"
echo -e ""
echo -e "${italic}https://github.com/GameServerManagers/Game-Server-Configs${default}"
echo -e ""
fn_sleep_time fn_sleep_time
mkdir -p "${lgsmdir}/config-default/config-game" mkdir -p "${lgsmdir}/config-default/config-game"
githuburl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/main" githuburl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/main"
@ -31,22 +34,35 @@ fn_fetch_default_config() {
} }
# Copys default configs from Game-Server-Configs repo to server config location. # Copys default configs from Game-Server-Configs repo to server config location.
# TODO: no error checking in place currently
fn_default_config_remote() { fn_default_config_remote() {
for config in "${array_configs[@]}"; do for config in "${array_configs[@]}"; do
# every config is copied # every config is copied
echo -e "copying ${config} config file." echo -en "copying config file [ ${config} ]"
fn_script_log_info "copying ${servercfg} config file." fn_script_log_info
if [ "${config}" == "${servercfgdefault}" ]; then if [ "${config}" == "${servercfgdefault}" ]; then
mkdir -p "${servercfgdir}" mkdir -p "${servercfgdir}"
cp -nv "${lgsmdir}/config-default/config-game/${config}" "${servercfgfullpath}" cp -nv "${lgsmdir}/config-default/config-game/${config}" "${servercfgfullpath}"
exitcode=$?
elif [ "${shortname}" == "arma3" ] && [ "${config}" == "${networkcfgdefault}" ]; then elif [ "${shortname}" == "arma3" ] && [ "${config}" == "${networkcfgdefault}" ]; then
mkdir -p "${servercfgdir}" mkdir -p "${servercfgdir}"
cp -nv "${lgsmdir}/config-default/config-game/${config}" "${networkcfgfullpath}" cp -nv "${lgsmdir}/config-default/config-game/${config}" "${networkcfgfullpath}"
exitcode=$?
elif [ "${shortname}" == "dst" ] && [ "${config}" == "${clustercfgdefault}" ]; then elif [ "${shortname}" == "dst" ] && [ "${config}" == "${clustercfgdefault}" ]; then
mkdir -p "${clustercfgfullpath}"
cp -nv "${lgsmdir}/config-default/config-game/${clustercfgdefault}" "${clustercfgfullpath}" cp -nv "${lgsmdir}/config-default/config-game/${clustercfgdefault}" "${clustercfgfullpath}"
exitcode=$?
else else
mkdir -p "${servercfgdir}" mkdir -p "${servercfgdir}"
cp -nv "${lgsmdir}/config-default/config-game/${config}" "${servercfgdir}/${config}" cp -nv "${lgsmdir}/config-default/config-game/${config}" "${servercfgdir}/${config}"
exitcode=$?
fi
if [ "${exitcode}" != 0 ]; then
fn_print_failure_nl
fn_script_log_fatal "copying config file ${servercfg}."
else
fn_print_ok_nl
fn_script_log_pass "copying config file ${servercfg}."
fi fi
done done
fn_sleep_time fn_sleep_time
@ -64,7 +80,7 @@ fn_default_config_local() {
# PASSWORD to random password # PASSWORD to random password
fn_set_config_vars() { fn_set_config_vars() {
if [ -f "${servercfgfullpath}" ]; then if [ -f "${servercfgfullpath}" ]; then
random=$(tr -dc 'A-Za-z0-9_' < /dev/urandom 2>/dev/null | head -c 8 | xargs) random=$(tr -dc 'A-Za-z0-9_' < /dev/urandom 2> /dev/null | head -c 8 | xargs)
servername="LinuxGSM" servername="LinuxGSM"
rconpass="admin${random}" rconpass="admin${random}"
echo -e "changing hostname." echo -e "changing hostname."

1
lgsm/modules/install_eula.sh

@ -25,7 +25,6 @@ echo -e "${italic}${eulaurl}${default}"
echo -e "" echo -e ""
if [ -z "${autoinstall}" ]; then if [ -z "${autoinstall}" ]; then
echo -e "By continuing you are indicating your agreement to the EULA." echo -e "By continuing you are indicating your agreement to the EULA."
echo -e ""
if ! fn_prompt_yn "Continue?" Y; then if ! fn_prompt_yn "Continue?" Y; then
exitcode=0 exitcode=0
core_exit.sh core_exit.sh

Loading…
Cancel
Save