gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
#!/bin/bash
|
|
# LinuxGSM fix_sfc.sh module
|
|
# Author: Daniel Gibbs
|
|
# Contributors: http://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Resolves issue that the default rcon password is not changed
|
|
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
if [ -f "${servercfgfullpath}" ]; then
|
|
# check if default password is set "changeme"
|
|
currentpass=$(grep -E "^rcon_password" "${servercfgfullpath}" | sed 's/^rcon_password //')
|
|
defaultpass="changeme"
|
|
# check if default password is set
|
|
if [ "${currentpass}" == "${defaultpass}" ]; then
|
|
fixname="change default rcon password"
|
|
fn_fix_msg_start
|
|
fn_script_log_info "changing rcon/admin password."
|
|
random=$(tr -dc A-Za-z0-9_ < /dev/urandom | head -c 8 | xargs)
|
|
rconpass="admin${random}"
|
|
sed -i "s/rcon_password changeme/rcon_password ${rconpass}/g" "${servercfgfullpath}"
|
|
fn_fix_msg_end
|
|
fi
|
|
# check if the hostname is the default name
|
|
currenthostname=$(grep -E "^hostname" "${servercfgfullpath}" | sed 's/^hostname //')
|
|
defaulthostname="SA-MP 0.3 Server"
|
|
if [ "${currenthostname}" == "${defaulthostname}" ]; then
|
|
fixname="change default hostname"
|
|
fn_fix_msg_start
|
|
fn_script_log_info "changing default hostname to LinuxGSM"
|
|
sed -i "s/hostname ${defaulthostname}/hostname LinuxGSM/g" "${servercfgfullpath}"
|
|
fn_fix_msg_end
|
|
fi
|
|
fi
|
|
|