Browse Source

renamed csv to tsv

pull/1477/head
Daniel Gibbs 8 years ago
parent
commit
b0b9bd2342
  1. 0
      lgsm/data/serverlist.tsv
  2. 16
      linuxgsm.sh

0
lgsm/data/serverlist.csv → lgsm/data/serverlist.tsv

1 arma3 arma3server ARMA 3
2 sdtd sdtdserver 7 Days to Die
3 ark arkserver ARK: Survival Evolved
4 bo boserver Ballistic Overkill
5 bf1942 bf1942server Battlefield 1942
6 bmdm bmdmserver Black Mesa: Deathmatch
7 bs bsserver Blade Symphony
8 bb2 bb2server BrainBread 2
9 cod codserver Call of Duty
10 cod2 cod2server Call of Duty 2
11 cod4 cod4server Call of Duty 4
12 coduo coduoserver Call of Duty: United Offensive
13 codwaw codwawserver Call of Duty: World at War
14 cc ccserver Codename CURE
15 cs csserver Counter-Strike 1.6
16 cscz csczserver Counter-Strike: Condition Zero
17 csgo csgoserver Counter-Strike: Global Offensive
18 css cssserver Counter-Strike: Source
19 dod dodserver Day of Defeat
20 dods dodsserver Day of Defeat: Source
21 doi doiserver Day of Infamy
22 dmc dmcserver Deathmatch Classic
23 dst dstserver Don't Starve Together
24 dab dabserver Double Action: Boogaloo
25 em emserver Empires Mod
26 fctr fctrserver Factorio
27 fof fofserver Fistful of Frags
28 gmod gmodserver Garrys Mod
29 ges gesserver GoldenEye: Source
30 hl2dm hl2dmserver Half-Life 2: Deathmatch
31 hldms hldmsserver Half-Life Deathmatch: Source
32 hldm hldmserver Half-Life: Deathmatch
33 hw hwserver Hurtworld
34 ins insserver Insurgency
35 jc2 jc2server Just Cause 2
36 kf kfserver Killing Floor
37 l4d l4dserver Left 4 Dead
38 l4d2 l4d2server Left 4 Dead 2
39 mc mcserver Minecraft
40 mta mtaserver Multi Theft Auto
41 mumble mumbleserver Mumble
42 ns2 ns2server Natural Selection 2
43 nmrih nmrihserver No More Room in Hell
44 ns2c ns2cserver NS2: Combat
45 opfor opforserver Opposing Force
46 pvkii pvkiiserver Pirates, Vikings, & Knights II
47 pc pcserver Project Cars
48 pz pzserver Project Zomboid
49 q2 q2server Quake 2
50 q3 q3server Quake 3: Arena
51 ql qlserver Quake Live
52 qw qwserver Quake World
53 ro roserver Red Orchestra: Ostfront 41-45
54 ricochet ricochetserver Ricochet
55 rust rustserver Rust
56 ss3 ss3server Serious Sam 3: BFE
57 sb sbserver Starbound
58 sven svenserver Sven Co-op
59 tf2 tf2server Team Fortress 2
60 tfc tfcserver Team Fortress Classic
61 ts3 ts3server Teamspeak 3
62 tw twserver Teeworlds
63 terraria terrariaserver Terraria
64 tu tuserver Tower Unite
65 ut2k4 ut2k4server Unreal Tournament

16
linuxgsm.sh

@ -32,14 +32,14 @@ libdir="${lgsmdir}/lib"
tmpdir="${lgsmdir}/tmp"
configdir="${lgsmdir}/config-lgsm"
configdirserver="${configdir}/${gameservername}"
configdirdefault="${lgsmdir}/config-default"
configdirdefault="${lgsmdir}/develop"
## GitHub Branch Select
# Allows for the use of different function files
# from a different repo and/or branch.
githubuser="GameServerManagers"
githubrepo="LinuxGSM"
githubbranch="develop"
githubbranch="feature/config"
# Core Function that is required first
core_functions.sh(){
@ -207,7 +207,7 @@ fn_install_menu() {
eval "$resultvar=\"${selection}\""
}
# Gets server info from serverlist.csv and puts in to array
# Gets server info from serverlist.tsv and puts in to array
fn_server_info(){
IFS=" "
server_info_array=($(grep -w "${userinput}" "${serverlist}"))
@ -251,6 +251,7 @@ fn_install_file(){
echo "./${local_filename} details"
fi
echo ""
echo "server_info_array: ${server_info_array}"
exit
}
@ -269,16 +270,16 @@ fi
if [ "${shortname}" == "core" ]; then
userinput=$1
datadir="${tmpdir}/data"
serverlist="${datadir}/serverlist.csv"
serverlist="${datadir}/serverlist.tsv"
# Download the serverlist. This is the complete list of all supported servers.
if [ -f "${serverlist}" ]; then
rm "${serverlist}"
fi
fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.csv" "${datadir}" "serverlist.csv" "nochmodx" "norun" "noforcedl" "nomd5"
fn_bootstrap_fetch_file_github "lgsm/data" "serverlist.tsv" "${datadir}" "serverlist.tsv" "nochmodx" "norun" "noforcedl" "nomd5"
if [ ! -f "${serverlist}" ]; then
echo "[ FAIL ] serverlist.csv could not be loaded."
echo "[ FAIL ] serverlist.tsv could not be loaded."
exit 1
fi
@ -287,7 +288,7 @@ if [ "${shortname}" == "core" ]; then
awk -F "," '{print $2 "\t" $3}' "${serverlist}"
} | column -s $'\t' -t | more
exit
elif [ "${userinput}" == "install" ]||[ "${userinput}" == "i" ]; then
elif [ "${userinput}" == "install" ]; then
fn_install_menu result "LinuxGSM" "Select game to install" "${serverlist}"
userinput="${result}"
fn_server_info
@ -299,6 +300,7 @@ if [ "${shortname}" == "core" ]; then
echo "[ FAIL ] menu result does not match gameservername"
echo "result: ${result}"
echo "gameservername: ${gameservername}"
echo "server_info_array: ${server_info_array}"
fi
elif [ -n "${userinput}" ]; then
fn_server_info

Loading…
Cancel
Save