install_config.sh 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774
  1. #!/bin/bash
  2. # LinuxGSM install_config.sh module
  3. # Author: Daniel Gibbs
  4. # Contributors: https://linuxgsm.com/contrib
  5. # Website: https://linuxgsm.com
  6. # Description: Creates default server configs.
  7. moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  8. # Checks if server cfg dir exists, creates it if it doesn't.
  9. fn_check_cfgdir() {
  10. if [ ! -d "${servercfgdir}" ]; then
  11. echo -e "creating ${servercfgdir} config directory."
  12. fn_script_log_info "Creating ${servercfgdir} config directory."
  13. mkdir -pv "${servercfgdir}"
  14. fi
  15. }
  16. # Copys default configs from Game-Server-Configs repo to server config location.
  17. # Downloads default configs from Game-Server-Configs repo to lgsm/config-default.
  18. fn_default_config_remote() {
  19. echo -e ""
  20. echo -e "${bold}${lightyellow}Downloading ${gamename} Configs${default}"
  21. fn_messages_separator
  22. echo -e "Downloading default configs from:"
  23. echo -e ""
  24. echo -e "${italic}https://github.com/GameServerManagers/Game-Server-Configs${default}"
  25. echo -e ""
  26. fn_sleep_time_1
  27. mkdir -p "${lgsmdir}/config-default/config-game"
  28. githuburl="https://raw.githubusercontent.com/GameServerManagers/Game-Server-Configs/main"
  29. for config in "${array_configs[@]}"; do
  30. fn_fetch_file "${githuburl}/${shortname}/${config}" "${remote_fileurl_backup}" "GitHub" "Bitbucket" "${lgsmdir}/config-default/config-game" "${config}" "nochmodx" "norun" "forcedl" "nohash"
  31. done
  32. }
  33. # Copys default configs from Game-Server-Configs repo to server config location.
  34. fn_default_config_remote() {
  35. for config in "${array_configs[@]}"; do
  36. # every config is copied
  37. echo -e "copying ${config} config file."
  38. fn_script_log_info "Copying ${servercfg} config file."
  39. if [ "${config}" == "${servercfgdefault}" ]; then
  40. mkdir -p "${servercfgdir}"
  41. cp -nv "${lgsmdir}/config-default/config-game/${config}" "${servercfgfullpath}"
  42. elif [ "${shortname}" == "arma3" ] && [ "${config}" == "${networkcfgdefault}" ]; then
  43. mkdir -p "${servercfgdir}"
  44. cp -nv "${lgsmdir}/config-default/config-game/${config}" "${networkcfgfullpath}"
  45. elif [ "${shortname}" == "dst" ] && [ "${config}" == "${clustercfgdefault}" ]; then
  46. cp -nv "${lgsmdir}/config-default/config-game/${clustercfgdefault}" "${clustercfgfullpath}"
  47. else
  48. echo -en "copying config file [ ${italic}${servercfgdir}/${config}${default} ]"
  49. changes+=$(cp -nv "${lgsmdir}/config-default/config-game/${config}" "${servercfgdir}/${config}")
  50. fi
  51. if [ "$?" -ne 0 ]; then # shellcheck disable=SC2181
  52. fn_print_fail_eol_nl
  53. fn_script_log_fail "copying config file ${servercfgfullpath}"
  54. elif [ "${changes}" != "" ]; then
  55. fn_print_ok_eol_nl
  56. fn_script_log_pass "copying config file ${servercfgfullpath}"
  57. else
  58. fn_print_skip_eol_nl
  59. fi
  60. unset changes
  61. done
  62. }
  63. # Copys local default config to server config location.
  64. fn_default_config_local() {
  65. echo -e ""
  66. echo -e "${bold}${lightyellow}Copying ${gamename} Configs${default}"
  67. fn_messages_separator
  68. echo -e "Copying default configs."
  69. fn_check_cfgdir
  70. # Check if the directory for ${servercfgfullpath} exists, if not, create it
  71. if [ ! -d "$(dirname "${servercfgfullpath}")" ]; then
  72. mkdir -p "$(dirname "${servercfgfullpath}")"
  73. fi
  74. echo -en "copying config file [ ${italic}${servercfgdefault}${default} ]: "
  75. cp --update=none "${servercfgdir}/${servercfgdefault}" "${servercfgfullpath}"
  76. exitcode=$?
  77. if [ "${exitcode}" != 0 ]; then
  78. fn_print_fail_eol
  79. fn_script_log_fail "copying config file [ ${servercfgdefault} ]: "
  80. else
  81. fn_print_ok_eol
  82. fn_script_log_pass "copying config file [ ${servercfgdefault} ]: "
  83. fi
  84. }
  85. # Changes some variables within the default configs.
  86. # SERVERNAME to LinuxGSM
  87. # PASSWORD to random password
  88. fn_set_config_vars() {
  89. if [ -f "${servercfgfullpath}" ]; then
  90. randomstring=$(tr -dc 'A-Za-z0-9_' < /dev/urandom 2> /dev/null | head -c 8 | xargs)
  91. servername="LinuxGSM"
  92. rconpass="admin${randomstring}"
  93. echo -e "changing hostname."
  94. fn_script_log_info "Changing hostname."
  95. fn_sleep_time
  96. # prevents var from being overwritten with the servername.
  97. if grep -q "SERVERNAME=SERVERNAME" "${lgsmdir}/config-default/config-game/${config}" 2> /dev/null; then
  98. changes+=$(sed -i "s/SERVERNAME=SERVERNAME/SERVERNAME=${servername}/g w /dev/stdout" "${servercfgfullpath}")
  99. elif grep -q "SERVERNAME=\"SERVERNAME\"" "${lgsmdir}/config-default/config-game/${config}" 2> /dev/null; then
  100. changes+=$(sed -i "s/SERVERNAME=\"SERVERNAME\"/SERVERNAME=\"${servername}\"/g w /dev/stdout" "${servercfgfullpath}")
  101. else
  102. changes+=$(sed -i "s/SERVERNAME/${servername}/g w /dev/stdout" "${servercfgfullpath}")
  103. fi
  104. echo -en "changing rcon/admin password."
  105. fn_script_log_info "Changing rcon/admin password."
  106. if [ "${shortname}" == "squad" ]; then
  107. changes+=$(sed -i "s/ADMINPASSWORD/${adminpass}/g w /dev/stdout" "${servercfgdir}/Rcon.cfg")
  108. else
  109. changes+=$(sed -i "s/ADMINPASSWORD/${adminpass}/g w /dev/stdout" "${servercfgfullpath}")
  110. fi
  111. exitcode=$?
  112. if [ "${exitcode}" -ne 0 ]; then # shellcheck disable=SC2181
  113. fn_print_fail_eol
  114. fn_script_log_fail "generating rcon/admin password"
  115. elif [ "${changes}" != "" ]; then
  116. fn_print_ok_eol_nl
  117. fn_script_log_pass "generating rcon/admin password"
  118. else
  119. fn_print_skip_eol_nl
  120. fi
  121. unset changes
  122. fi
  123. }
  124. # Changes some variables within the default Don't Starve Together configs.
  125. fn_set_dst_config_vars() {
  126. ## cluster.ini
  127. if grep -Fq "SERVERNAME" "${clustercfgfullpath}"; then
  128. echo -e "changing server name."
  129. fn_script_log_info "Changing server name."
  130. sed -i "s/SERVERNAME/LinuxGSM/g" "${clustercfgfullpath}"
  131. fn_sleep_time
  132. echo -e "changing shard mode."
  133. fn_script_log_info "Changing shard mode."
  134. sed -i "s/USESHARDING/${sharding}/g" "${clustercfgfullpath}"
  135. fn_sleep_time
  136. echo -e "randomizing cluster key."
  137. fn_script_log_info "Randomizing cluster key."
  138. randomstring=$(tr -dc 'A-Za-z0-9_' < /dev/urandom 2> /dev/null | head -c 8 | xargs)
  139. sed -i "s/CLUSTERKEY/${randomstring}/g" "${clustercfgfullpath}"
  140. fn_sleep_time
  141. else
  142. fn_print_skip_eol_nl
  143. fi
  144. unset changes
  145. randomstring=$(tr -dc A-Za-z0-9 < /dev/urandom 2> /dev/null | head -c 16 | xargs)
  146. echo -en "generating cluster key"
  147. changes=""
  148. changes+=$(sed -i "s/CLUSTERKEY/${randomstring}/g w /dev/stdout" "${clustercfgfullpath}")
  149. if [ "$?" -ne 0 ]; then # shellcheck disable=SC2181
  150. fn_print_fail_eol
  151. fn_script_log_fail "generating cluster key"
  152. elif [ "${changes}" != "" ]; then
  153. fn_print_ok_eol_nl
  154. fn_script_log_pass "generating cluster key"
  155. else
  156. fn_print_skip_eol_nl
  157. fi
  158. echo -e "changing shard name."
  159. fn_script_log_info "Changing shard name."
  160. sed -i "s/SHARDNAME/${shard}/g" "${servercfgfullpath}"
  161. fn_sleep_time
  162. echo -e "changing master setting."
  163. fn_script_log_info "Changing master setting."
  164. sed -i "s/ISMASTER/${master}/g" "${servercfgfullpath}"
  165. fn_sleep_time
  166. ## worldgenoverride.lua
  167. if [ "${cave}" == "true" ]; then
  168. echo -e "defining ${shard} as cave in ${servercfgdir}/worldgenoverride.lua."
  169. fn_script_log_info "Defining ${shard} as cave in ${servercfgdir}/worldgenoverride.lua."
  170. echo 'return { override_enabled = true, preset = "DST_CAVE", }' > "${servercfgdir}/worldgenoverride.lua"
  171. fi
  172. fn_sleep_time
  173. echo -e ""
  174. }
  175. # Lists local config locations
  176. fn_list_config_locations() {
  177. echo -e ""
  178. echo -e "${bold}${lightyellow}Config Locations${default}"
  179. fn_messages_separator
  180. if [ -n "${servercfgfullpath}" ]; then
  181. if [ -f "${servercfgfullpath}" ]; then
  182. echo -e "${gamename} config file: ${italic}${servercfgfullpath}${default}"
  183. elif [ -d "${servercfgfullpath}" ]; then
  184. echo -e "${gamename} config directory: ${italic}${servercfgfullpath}"
  185. else
  186. echo -e "${gamename} config: ${italic}${red}${servercfgfullpath}${default} (${red}CONFIG IS MISSING${default})"
  187. fi
  188. fi
  189. echo -e "LinuxGSM config: ${italic}${lgsmdir}/config-lgsm/${gameservername}${default}"
  190. echo -e "Config documentation: ${italic}https://docs.linuxgsm.com/configuration${default}"
  191. }
  192. if [ "${shortname}" == "sdtd" ]; then
  193. fn_default_config_local
  194. fn_list_config_locations
  195. elif [ "${shortname}" == "ac" ]; then
  196. array_configs+=(server_cfg.ini)
  197. fn_default_config_remote
  198. fn_set_config_vars
  199. fn_list_config_locations
  200. elif [ "${shortname}" == "ahl" ]; then
  201. array_configs+=(server.cfg)
  202. fn_default_config_remote
  203. fn_set_config_vars
  204. fn_list_config_locations
  205. elif [ "${shortname}" == "ahl2" ]; then
  206. array_configs+=(server.cfg)
  207. fn_default_config_remote
  208. fn_set_config_vars
  209. fn_list_config_locations
  210. elif [ "${shortname}" == "ark" ]; then
  211. array_configs+=(GameUserSettings.ini)
  212. fn_default_config_remote
  213. fn_set_config_vars
  214. fn_list_config_locations
  215. elif [ "${shortname}" == "arma3" ]; then
  216. array_configs+=(server.cfg network.cfg)
  217. fn_default_config_remote
  218. fn_set_config_vars
  219. fn_list_config_locations
  220. elif [ "${shortname}" == "armar" ]; then
  221. array_configs+=(server.json)
  222. fn_default_config_remote
  223. fn_set_config_vars
  224. fn_list_config_locations
  225. elif [ "${shortname}" == "ats" ]; then
  226. array_configs+=(server_config.sii)
  227. fn_default_config_remote
  228. fn_set_config_vars
  229. fn_list_config_locations
  230. elif [ "${shortname}" == "bo" ]; then
  231. array_configs+=(config.txt)
  232. fn_default_config_remote
  233. fn_set_config_vars
  234. fn_list_config_locations
  235. elif [ "${shortname}" == "bd" ]; then
  236. array_configs+=(server.cfg)
  237. fn_default_config_remote
  238. fn_set_config_vars
  239. fn_list_config_locations
  240. elif [ "${shortname}" == "bt" ]; then
  241. array_configs+=(serversettings.xml)
  242. fn_default_config_remote
  243. fn_set_config_vars
  244. fn_list_config_locations
  245. elif [ "${shortname}" == "btl" ]; then
  246. fn_check_cfgdir
  247. array_configs+=(Game.ini)
  248. fn_fetch_default_config
  249. fn_default_config_remote
  250. fn_set_config_vars
  251. fn_list_config_locations
  252. elif [ "${shortname}" == "bf1942" ]; then
  253. array_configs+=(serversettings.con)
  254. fn_default_config_remote
  255. fn_set_config_vars
  256. fn_list_config_locations
  257. elif [ "${shortname}" == "bfv" ]; then
  258. array_configs+=(serversettings.con)
  259. fn_default_config_remote
  260. fn_set_config_vars
  261. fn_list_config_locations
  262. elif [ "${shortname}" == "bs" ]; then
  263. array_configs+=(server.cfg)
  264. fn_default_config_remote
  265. fn_set_config_vars
  266. fn_list_config_locations
  267. elif [ "${shortname}" == "bb" ]; then
  268. array_configs+=(server.cfg)
  269. fn_default_config_remote
  270. fn_set_config_vars
  271. fn_list_config_locations
  272. elif [ "${shortname}" == "bb2" ]; then
  273. array_configs+=(server.cfg)
  274. fn_default_config_remote
  275. fn_set_config_vars
  276. fn_list_config_locations
  277. elif [ "${shortname}" == "bmdm" ]; then
  278. array_configs+=(server.cfg)
  279. fn_default_config_remote
  280. fn_set_config_vars
  281. fn_list_config_locations
  282. elif [ "${shortname}" == "ck" ]; then
  283. array_configs+=(ServerConfig.json)
  284. fn_default_config_remote
  285. fn_set_config_vars
  286. fn_list_config_locations
  287. elif [ "${shortname}" == "cod" ]; then
  288. array_configs+=(server.cfg)
  289. fn_default_config_remote
  290. fn_set_config_vars
  291. fn_list_config_locations
  292. elif [ "${shortname}" == "coduo" ]; then
  293. array_configs+=(server.cfg)
  294. fn_default_config_remote
  295. fn_set_config_vars
  296. fn_list_config_locations
  297. elif [ "${shortname}" == "cod2" ]; then
  298. array_configs+=(server.cfg)
  299. fn_default_config_remote
  300. fn_set_config_vars
  301. fn_list_config_locations
  302. elif [ "${shortname}" == "cod4" ]; then
  303. array_configs+=(server.cfg)
  304. fn_default_config_remote
  305. fn_set_config_vars
  306. fn_list_config_locations
  307. elif [ "${shortname}" == "codwaw" ]; then
  308. array_configs+=(server.cfg)
  309. fn_default_config_remote
  310. fn_set_config_vars
  311. fn_list_config_locations
  312. elif [ "${shortname}" == "cc" ]; then
  313. array_configs+=(server.cfg)
  314. fn_default_config_remote
  315. fn_set_config_vars
  316. fn_list_config_locations
  317. elif [ "${shortname}" == "col" ]; then
  318. array_configs+=(colserver.json)
  319. fn_default_config_remote
  320. fn_set_config_vars
  321. fn_list_config_locations
  322. elif [ "${shortname}" == "cs" ]; then
  323. array_configs+=(server.cfg)
  324. fn_default_config_remote
  325. fn_set_config_vars
  326. fn_list_config_locations
  327. elif [ "${shortname}" == "cs2" ]; then
  328. array_configs+=(server.cfg)
  329. fn_fetch_default_config
  330. fn_default_config_remote
  331. fn_set_config_vars
  332. fn_list_config_locations
  333. elif [ "${shortname}" == "cscz" ]; then
  334. array_configs+=(server.cfg)
  335. fn_default_config_remote
  336. fn_set_config_vars
  337. fn_list_config_locations
  338. elif [ "${shortname}" == "csgo" ]; then
  339. array_configs+=(server.cfg)
  340. fn_default_config_remote
  341. fn_set_config_vars
  342. fn_list_config_locations
  343. elif [ "${shortname}" == "css" ]; then
  344. array_configs+=(server.cfg)
  345. fn_default_config_remote
  346. fn_set_config_vars
  347. fn_list_config_locations
  348. elif [ "${shortname}" == "ct" ]; then
  349. array_configs+=(ServerSetting.ini)
  350. fn_default_config_remote
  351. fn_set_config_vars
  352. fn_list_config_locations
  353. elif [ "${shortname}" == "dayz" ]; then
  354. array_configs+=(server.cfg)
  355. fn_default_config_remote
  356. fn_set_config_vars
  357. fn_list_config_locations
  358. elif [ "${shortname}" == "dod" ]; then
  359. array_configs+=(server.cfg)
  360. fn_default_config_remote
  361. fn_set_config_vars
  362. fn_list_config_locations
  363. elif [ "${shortname}" == "dodr" ]; then
  364. array_configs+=(Game.ini)
  365. fn_default_config_remote
  366. fn_list_config_locations
  367. elif [ "${shortname}" == "dods" ]; then
  368. array_configs+=(server.cfg)
  369. fn_default_config_remote
  370. fn_set_config_vars
  371. fn_list_config_locations
  372. elif [ "${shortname}" == "doi" ]; then
  373. array_configs+=(server.cfg)
  374. fn_default_config_remote
  375. fn_set_config_vars
  376. fn_list_config_locations
  377. elif [ "${shortname}" == "dmc" ]; then
  378. array_configs+=(server.cfg)
  379. fn_default_config_remote
  380. fn_set_config_vars
  381. fn_list_config_locations
  382. elif [ "${shortname}" == "dst" ]; then
  383. array_configs+=(cluster.ini server.ini)
  384. fn_default_config_remote
  385. fn_set_dst_config_vars
  386. fn_list_config_locations
  387. elif [ "${shortname}" == "dab" ]; then
  388. array_configs+=(server.cfg)
  389. fn_default_config_remote
  390. fn_set_config_vars
  391. fn_list_config_locations
  392. elif [ "${shortname}" == "dys" ]; then
  393. array_configs+=(server.cfg)
  394. fn_default_config_remote
  395. fn_set_config_vars
  396. fn_list_config_locations
  397. elif [ "${shortname}" == "eco" ]; then
  398. array_configs+=(Network.eco)
  399. fn_default_config_remote
  400. fn_set_config_vars
  401. fn_list_config_locations
  402. elif [ "${shortname}" == "em" ]; then
  403. fn_default_config_local
  404. fn_list_config_locations
  405. elif [ "${shortname}" == "etl" ]; then
  406. array_configs+=(server.cfg)
  407. fn_default_config_remote
  408. fn_set_config_vars
  409. fn_list_config_locations
  410. elif [ "${shortname}" == "ets2" ]; then
  411. array_configs+=(server_config.sii)
  412. fn_default_config_remote
  413. fn_set_config_vars
  414. fn_list_config_locations
  415. elif [ "${shortname}" == "fctr" ]; then
  416. array_configs+=(server-settings.json)
  417. fn_default_config_remote
  418. fn_set_config_vars
  419. fn_list_config_locations
  420. elif [ "${shortname}" == "fof" ]; then
  421. array_configs+=(server.cfg)
  422. fn_default_config_remote
  423. fn_set_config_vars
  424. fn_list_config_locations
  425. elif [ "${shortname}" == "gmod" ]; then
  426. array_configs+=(server.cfg)
  427. fn_default_config_remote
  428. fn_set_config_vars
  429. fn_list_config_locations
  430. elif [ "${shortname}" == "hldm" ]; then
  431. array_configs+=(server.cfg)
  432. fn_default_config_remote
  433. fn_set_config_vars
  434. fn_list_config_locations
  435. elif [ "${shortname}" == "hldms" ]; then
  436. array_configs+=(server.cfg)
  437. fn_default_config_remote
  438. fn_set_config_vars
  439. fn_list_config_locations
  440. elif [ "${shortname}" == "ohd" ]; then
  441. array_configs+=(Admins.cfg Engine.ini Game.ini MapCycle.cfg)
  442. fn_fetch_default_config
  443. fn_default_config_remote
  444. fn_set_config_vars
  445. fn_list_config_locations
  446. elif [ "${shortname}" == "opfor" ]; then
  447. array_configs+=(server.cfg)
  448. fn_default_config_remote
  449. fn_set_config_vars
  450. fn_list_config_locations
  451. elif [ "${shortname}" == "hl2dm" ]; then
  452. array_configs+=(server.cfg)
  453. fn_default_config_remote
  454. fn_set_config_vars
  455. fn_list_config_locations
  456. elif [ "${shortname}" == "hz" ]; then
  457. # Config is generated on first run
  458. :
  459. elif [ "${shortname}" == "ins" ]; then
  460. array_configs+=(server.cfg)
  461. fn_default_config_remote
  462. fn_set_config_vars
  463. fn_list_config_locations
  464. elif [ "${shortname}" == "ios" ]; then
  465. array_configs+=(server.cfg)
  466. fn_default_config_remote
  467. fn_set_config_vars
  468. fn_list_config_locations
  469. elif [ "${shortname}" == "jc2" ]; then
  470. array_configs+=(config.lua)
  471. fn_default_config_remote
  472. fn_set_config_vars
  473. fn_list_config_locations
  474. elif [ "${shortname}" == "jc3" ]; then
  475. array_configs+=(config.json)
  476. fn_default_config_remote
  477. fn_set_config_vars
  478. fn_list_config_locations
  479. elif [ "${shortname}" == "kf" ]; then
  480. array_configs+=(Default.ini)
  481. fn_default_config_remote
  482. fn_set_config_vars
  483. fn_list_config_locations
  484. elif [ "${shortname}" == "l4d" ]; then
  485. array_configs+=(server.cfg)
  486. fn_default_config_remote
  487. fn_set_config_vars
  488. fn_list_config_locations
  489. elif [ "${shortname}" == "l4d2" ]; then
  490. array_configs+=(server.cfg)
  491. fn_default_config_remote
  492. fn_set_config_vars
  493. fn_list_config_locations
  494. elif [ "${shortname}" == "mc" ] || [ "${shortname}" == "pmc" ]; then
  495. array_configs+=(server.properties)
  496. fn_default_config_remote
  497. fn_set_config_vars
  498. fn_list_config_locations
  499. elif [ "${shortname}" == "mcb" ]; then
  500. array_configs+=(server.properties)
  501. fn_default_config_remote
  502. fn_set_config_vars
  503. fn_list_config_locations
  504. elif [ "${shortname}" == "mohaa" ]; then
  505. array_configs+=(server.cfg)
  506. fn_default_config_remote
  507. fn_set_config_vars
  508. fn_list_config_locations
  509. elif [ "${shortname}" == "mh" ]; then
  510. array_configs+=(Game.ini)
  511. fn_default_config_remote
  512. fn_set_config_vars
  513. fn_list_config_locations
  514. elif [ "${shortname}" == "ns" ]; then
  515. array_configs+=(server.cfg)
  516. fn_default_config_remote
  517. fn_set_config_vars
  518. fn_list_config_locations
  519. elif [ "${shortname}" == "nmrih" ]; then
  520. array_configs+=(server.cfg)
  521. fn_default_config_remote
  522. fn_set_config_vars
  523. fn_list_config_locations
  524. elif [ "${shortname}" == "nd" ]; then
  525. array_configs+=(server.cfg)
  526. fn_default_config_remote
  527. fn_set_config_vars
  528. fn_list_config_locations
  529. elif [ "${shortname}" == "mta" ]; then
  530. array_configs+=(acl.xml mtaserver.conf vehiclecolors.conf)
  531. fn_default_config_remote
  532. fn_list_config_locations
  533. elif [ "${shortname}" == "pvr" ]; then
  534. array_configs+=(Game.ini)
  535. fn_default_config_remote
  536. fn_set_config_vars
  537. elif [ "${shortname}" == "pvkii" ]; then
  538. array_configs+=(server.cfg)
  539. fn_default_config_remote
  540. fn_set_config_vars
  541. fn_list_config_locations
  542. elif [ "${shortname}" == "pw" ]; then
  543. array_configs+=(PalWorldSettings.ini)
  544. fn_fetch_default_config
  545. fn_default_config_remote
  546. fn_set_config_vars
  547. fn_list_config_locations
  548. elif [ "${shortname}" == "pz" ]; then
  549. array_configs+=(server.ini)
  550. fn_default_config_remote
  551. fn_set_config_vars
  552. fn_list_config_locations
  553. elif [ "${shortname}" == "nec" ]; then
  554. array_configs+=(server.cfg)
  555. fn_default_config_remote
  556. fn_set_config_vars
  557. fn_list_config_locations
  558. elif [ "${shortname}" == "pc" ]; then
  559. array_configs+=(server.cfg)
  560. fn_default_config_remote
  561. fn_set_config_vars
  562. fn_list_config_locations
  563. elif [ "${shortname}" == "pc2" ]; then
  564. fn_default_config_local
  565. fn_list_config_locations
  566. elif [ "${shortname}" == "q2" ]; then
  567. array_configs+=(server.cfg)
  568. fn_default_config_remote
  569. fn_set_config_vars
  570. fn_list_config_locations
  571. elif [ "${shortname}" == "q3" ]; then
  572. array_configs+=(server.cfg)
  573. fn_fetch_default_configs
  574. fn_default_config_remote
  575. fn_set_config_vars
  576. fn_list_config_locations
  577. elif [ "${shortname}" == "q4" ]; then
  578. array_configs+=(server.cfg)
  579. fn_fetch_default_config
  580. fn_default_config_remote
  581. fn_set_config_vars
  582. fn_list_config_locations
  583. elif [ "${shortname}" == "ql" ]; then
  584. array_configs+=(server.cfg)
  585. fn_default_config_remote
  586. fn_set_config_vars
  587. fn_list_config_locations
  588. elif [ "${shortname}" == "jk2" ]; then
  589. array_configs+=(server.cfg)
  590. fn_default_config_remote
  591. fn_set_config_vars
  592. elif [ "${shortname}" == "qw" ]; then
  593. array_configs+=(server.cfg)
  594. fn_default_config_remote
  595. fn_set_config_vars
  596. fn_list_config_locations
  597. elif [ "${shortname}" == "ricochet" ]; then
  598. array_configs+=(server.cfg)
  599. fn_default_config_remote
  600. fn_set_config_vars
  601. fn_list_config_locations
  602. elif [ "${shortname}" == "rtcw" ]; then
  603. array_configs+=(server.cfg)
  604. fn_default_config_remote
  605. fn_set_config_vars
  606. fn_list_config_locations
  607. elif [ "${shortname}" == "rust" ]; then
  608. array_configs+=(server.cfg)
  609. fn_default_config_remote
  610. fn_list_config_locations
  611. elif [ "${shortname}" == "scpsl" ] || [ "${shortname}" == "scpslsm" ]; then
  612. array_configs+=(config_gameplay.txt config_localadmin.txt)
  613. fn_default_config_remote
  614. fn_set_config_vars
  615. fn_list_config_locations
  616. elif [ "${shortname}" == "sf" ]; then
  617. array_configs+=(GameUserSettings.ini)
  618. fn_default_config_remote
  619. fn_set_config_vars
  620. fn_list_config_locations
  621. elif [ "${shortname}" == "sm" ]; then
  622. fn_default_config_local
  623. fn_list_config_locations
  624. elif [ "${shortname}" == "sol" ]; then
  625. array_configs+=(soldat.ini)
  626. fn_default_config_remote
  627. fn_set_config_vars
  628. fn_list_config_locations
  629. elif [ "${shortname}" == "sof2" ]; then
  630. array_configs+=(server.cfg mapcycle.txt)
  631. fn_default_config_remote
  632. fn_set_config_vars
  633. fn_list_config_locations
  634. elif [ "${shortname}" == "sfc" ]; then
  635. array_configs+=(server.cfg)
  636. fn_default_config_remote
  637. fn_set_config_vars
  638. fn_list_config_locations
  639. elif [ "${shortname}" == "squad" ]; then
  640. array_configs+=(Admins.cfg Bans.cfg License.cfg Server.cfg Rcon.cfg)
  641. fn_default_config_remote
  642. fn_set_config_vars
  643. fn_list_config_locations
  644. elif [ "${shortname}" == "sb" ]; then
  645. array_configs+=(starbound_server.config)
  646. fn_default_config_remote
  647. fn_set_config_vars
  648. fn_list_config_locations
  649. elif [ "${shortname}" == "stn" ]; then
  650. array_configs+=(ServerConfig.txt ServerUsers.txt TpPresets.json UserPermissions.json)
  651. fn_default_config_remote
  652. fn_set_config_vars
  653. fn_list_config_locations
  654. elif [ "${shortname}" == "sven" ]; then
  655. array_configs+=(server.cfg)
  656. fn_default_config_remote
  657. fn_set_config_vars
  658. fn_list_config_locations
  659. elif [ "${shortname}" == "tf2" ]; then
  660. array_configs+=(server.cfg)
  661. fn_default_config_remote
  662. fn_set_config_vars
  663. fn_list_config_locations
  664. elif [ "${shortname}" == "tfc" ]; then
  665. array_configs+=(server.cfg)
  666. fn_default_config_remote
  667. fn_set_config_vars
  668. fn_list_config_locations
  669. elif [ "${shortname}" == "ti" ]; then
  670. array_configs+=(Game.ini Engine.ini)
  671. fn_default_config_remote
  672. fn_set_config_vars
  673. fn_list_config_locations
  674. elif [ "${shortname}" == "ts" ]; then
  675. array_configs+=(server.cfg)
  676. fn_default_config_remote
  677. fn_set_config_vars
  678. fn_list_config_locations
  679. elif [ "${shortname}" == "ts3" ]; then
  680. array_configs+=(ts3server.ini)
  681. fn_default_config_remote
  682. fn_list_config_locations
  683. elif [ "${shortname}" == "tw" ]; then
  684. array_configs+=(server.cfg ctf.cfg dm.cfg duel.cfg tdm.cfg)
  685. fn_default_config_remote
  686. fn_set_config_vars
  687. fn_list_config_locations
  688. elif [ "${shortname}" == "terraria" ]; then
  689. array_configs+=(serverconfig.txt)
  690. fn_default_config_remote
  691. fn_set_config_vars
  692. fn_list_config_locations
  693. elif [ "${shortname}" == "tu" ]; then
  694. array_configs+=(TowerServer.ini)
  695. fn_default_config_remote
  696. fn_set_config_vars
  697. fn_list_config_locations
  698. elif [ "${shortname}" == "ut" ]; then
  699. array_configs+=(Game.ini Engine.ini)
  700. fn_default_config_remote
  701. fn_set_config_vars
  702. fn_list_config_locations
  703. elif [ "${shortname}" == "ut2k4" ]; then
  704. array_configs+=(UT2004.ini)
  705. fn_default_config_remote
  706. fn_set_config_vars
  707. fn_list_config_locations
  708. elif [ "${shortname}" == "ut99" ]; then
  709. array_configs+=(Default.ini)
  710. fn_default_config_remote
  711. fn_set_config_vars
  712. fn_list_config_locations
  713. elif [ "${shortname}" == "unt" ]; then
  714. # Config is generated on first run
  715. :
  716. elif [ "${shortname}" == "vints" ]; then
  717. # Config is generated on first run
  718. :
  719. elif [ "${shortname}" == "vs" ]; then
  720. array_configs+=(server.cfg)
  721. fn_default_config_remote
  722. fn_set_config_vars
  723. fn_list_config_locations
  724. elif [ "${shortname}" == "wet" ]; then
  725. array_configs+=(server.cfg)
  726. fn_default_config_remote
  727. fn_set_config_vars
  728. fn_list_config_locations
  729. elif [ "${shortname}" == "wf" ]; then
  730. array_configs+=(server.cfg)
  731. fn_default_config_remote
  732. fn_set_config_vars
  733. fn_list_config_locations
  734. elif [ "${shortname}" == "wmc" ]; then
  735. array_configs+=(config.yml)
  736. fn_default_config_remote
  737. fn_set_config_vars
  738. fn_list_config_locations
  739. elif [ "${shortname}" == "xnt" ]; then
  740. array_configs+=(server.cfg)
  741. fn_fetch_default_config
  742. fn_default_config_remote
  743. fn_set_config_vars
  744. fn_list_config_locations
  745. elif [ "${shortname}" == "wurm" ]; then
  746. array_configs+=(server.cfg)
  747. fn_default_config_remote
  748. fn_set_config_vars
  749. fn_list_config_locations
  750. elif [ "${shortname}" == "zmr" ]; then
  751. array_configs+=(server.cfg)
  752. fn_default_config_remote
  753. fn_set_config_vars
  754. fn_list_config_locations
  755. elif [ "${shortname}" == "zps" ]; then
  756. array_configs+=(server.cfg)
  757. fn_default_config_remote
  758. fn_set_config_vars
  759. fn_list_config_locations
  760. fi