Browse Source

Added module name to all install functions

pull/743/head
Daniel Gibbs 9 years ago
parent
commit
d9f9e76ad9
  1. 1
      functions/command_install.sh
  2. 4
      functions/core_dl.sh
  3. 2
      functions/install_complete.sh
  4. 2
      functions/install_config.sh
  5. 2
      functions/install_gslt.sh
  6. 2
      functions/install_header.sh
  7. 2
      functions/install_logs.sh
  8. 2
      functions/install_retry.sh
  9. 2
      functions/install_server_dir.sh
  10. 2
      functions/install_server_files.sh
  11. 2
      functions/install_steamcmd.sh
  12. 2
      functions/install_ts3.sh
  13. 2
      functions/install_ts3db.sh
  14. 1
      functions/install_ut2k4_key.sh

1
functions/command_install.sh

@ -4,6 +4,7 @@
# Website: http://gameservermanagers.com
lgsm_version="260216"
local modulename="Install"
function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
check.sh

4
functions/core_dl.sh

@ -28,13 +28,13 @@ if [ -n "${md5}" ]; then
fn_printfaileolnl
echo "${filename} returned MD5 checksum: ${md5sumcmd}"
echo "expected MD5 checksum: ${md5}"
fn_scriptlog "failed to verify ${filename} with MD5"
fn_scriptlog "verifying ${filename} with MD5: FAIL"
fn_scriptlog "${filename} returned MD5 checksum: ${md5sumcmd}"
fn_scriptlog "expected MD5 checksum: ${md5}"
exit 1
else
fn_printokeolnl
fn_scriptlog "verifyed ${filename} with MD5"
fn_scriptlog "verifying ${filename} with MD5: OK"
fn_scriptlog "${filename} returned MD5 checksum: ${md5sumcmd}"
fn_scriptlog "expected MD5 checksum: ${md5}"
fi

2
functions/install_complete.sh

@ -4,6 +4,8 @@
# Website: http://gameservermanagers.com
lgsm_version="271215"
local modulename="Install"
if [ "${gamename}" == "Don't Starve Together" ]; then
echo ""
echo "An Authentication Token is required to run this server!"

2
functions/install_config.sh

@ -4,6 +4,8 @@
# Website: http://gameservermanagers.com
lgsm_version="100116"
local modulename="Install"
fn_defaultconfig(){
echo "creating ${servercfg} config file."
cp -v "${servercfgdefault}" "${servercfgfullpath}"

2
functions/install_gslt.sh

@ -6,6 +6,8 @@ lgsm_version="270216"
# Description: Configures GSLT.
local modulename="Install"
echo ""
echo "Game Server Login Token"
echo "============================"

2
functions/install_header.sh

@ -4,6 +4,8 @@
# Website: http://gameservermanagers.com
lgsm_version="271215"
local modulename="Install"
clear
echo "================================="
echo "${gamename}"

2
functions/install_logs.sh

@ -4,6 +4,8 @@
# Website: http://gameservermanagers.com
lgsm_version="270216"
local modulename="Install"
if [ "${checklogs}" != "1" ]; then
echo ""
echo "Creating log directorys"

2
functions/install_retry.sh

@ -4,6 +4,8 @@
# Website: http://gameservermanagers.com
lgsm_version="271215"
local modulename="Install"
while true; do
read -e -i "y" -p "Retry install? [Y/n]" yn
case $yn in

2
functions/install_server_dir.sh

@ -4,6 +4,8 @@
# Website: http://gameservermanagers.com
lgsm_version="271215"
local modulename="Install"
echo ""
echo "Server Directory"
echo "================================="

2
functions/install_server_files.sh

@ -4,6 +4,8 @@
# Website: http://gameservermanagers.com
lgsm_version="270216"
local modulename="Install"
fn_install_server_files(){
if [ "${gamename}" == "Unreal Tournament 99" ]; then
fileurl="http://gameservermanagers.com/files/UnrealTournament99/ut99-server-451-ultimate-linux.tar.bz2"; filedir="${lgsmdir}/tmp"; filename="ut99-server-451-ultimate-linux.tar.bz2"; executecmd="noexecute" run="norun"; force="noforce"; md5="49cb24d0550ff6ddeaba6007045c6edd"

2
functions/install_steamcmd.sh

@ -6,6 +6,8 @@ lgsm_version="271215"
# Description: Downloads SteamCMD on install.
local modulename="Install"
echo ""
echo "Installing SteamCMD"
echo "================================="

2
functions/install_ts3.sh

@ -4,6 +4,8 @@
# Website: http://gameservermanagers.com
lgsm_version="271215"
local modulename="Install"
info_distro.sh
# Gets the teamspeak server architecture
if [ "${arch}" == "x86_64" ]; then

2
functions/install_ts3db.sh

@ -5,6 +5,8 @@
# Website: http://gameservermanagers.com
lgsm_version="271215"
local modulename="Install"
fn_install_ts3db_mariadb(){
echo ""
echo "checking if libmariadb2 is installed"

1
functions/install_ut2k4_key.sh

@ -4,6 +4,7 @@
# Website: http://gameservermanagers.com
lgsm_version="271215"
local modulename="Install"
echo ""
echo "Enter ${gamename} CD Key"

Loading…
Cancel
Save