Updated files to be in compliance with testing resultUpdated files to be in compliance with testing results

This commit is contained in:
Hendrik Boll 2019-05-12 19:03:32 +02:00
parent abb1bec479
commit 1c36cef3fb
6 changed files with 6 additions and 4 deletions

View File

@ -10,7 +10,7 @@ services:
- MYSQL_USER=trackmania
- MYSQL_PASSWORD=
volumes:
- /db-data:/var/lib/mysql
- ./db-data:/var/lib/mysql
pma:
image: phpmyadmin/phpmyadmin
container_name: trackmania_phpmyadmin
@ -50,6 +50,7 @@ services:
- tmserver
restart: on-failure
environment:
- SERVER_SA_PASSWORD=
- DB_HOST=db
- DB_LOGIN=trackmania
- DB_LOGIN_PASSWORD=

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<playlist>
<gameinfos>
<game_mode>0</game_mode>
<game_mode>1</game_mode>
<chat_time>10000</chat_time>
<finishtimeout>1</finishtimeout>
<allwarmupduration>0</allwarmupduration>

View File

@ -16,7 +16,7 @@ fi
if [[ -z "${MASTERADMIN_LOGIN}" ]]
then
echo "No ingame MasterAdmin was specified."
MASTERADMIN_LOGIN=""
MASTERADMIN_LOGIN="_placeholder_"
fi
if [[ -z "${SERVER_SA_PASSWORD}" ]]
then

View File

@ -6,7 +6,7 @@
<!-- ipaddress can be specified to guard each login against -->
<!-- unauthorized use of admin commands from other IP addresses -->
<!-- format:
<tmlogin>--$MASTERADMIN_LOGIN--</tmlogin> <ipaddress></ipaddress>
<tmlogin>_placeholder_</tmlogin> <ipaddress></ipaddress>
-->
</masteradmins>

View File

@ -9,6 +9,7 @@
CREATE TABLE IF NOT EXISTS `challenges` (
`Id` mediumint(9) NOT NULL auto_increment,
`Uid` varchar(27) NOT NULL default '',
`Date` datetime NOT NULL default '1970-01-01 00:00:00',
`Name` varchar(100) NOT NULL default '',
`Author` varchar(30) NOT NULL default '',
`Environment` varchar(10) NOT NULL default '',