wip
This commit is contained in:
parent
7931cd8226
commit
136cf6a466
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ for name, properties in node.metadata.get('minecraft/servers').items():
|
||||||
'owner': 'minecraft',
|
'owner': 'minecraft',
|
||||||
}
|
}
|
||||||
|
|
||||||
files[f'/var/opt/minecraft/{name}/eula.txt'] = {
|
files[f'/var/lib/minecraft/{name}/eula.txt'] = {
|
||||||
'content': 'eula=true',
|
'content': 'eula=true',
|
||||||
'owner': 'minecraft',
|
'owner': 'minecraft',
|
||||||
'needed_by': {
|
'needed_by': {
|
||||||
|
@ -39,7 +39,7 @@ for name, properties in node.metadata.get('minecraft/servers').items():
|
||||||
}
|
}
|
||||||
|
|
||||||
translations = {True: 'true', False: 'false', None: ''}
|
translations = {True: 'true', False: 'false', None: ''}
|
||||||
files[f'/var/opt/minecraft/{name}/server.properties'] = {
|
files[f'/var/lib/minecraft/{name}/server.properties'] = {
|
||||||
'content': '\n'.join(
|
'content': '\n'.join(
|
||||||
f'{key}={translations.get(value, value)}'
|
f'{key}={translations.get(value, value)}'
|
||||||
for key, value in properties.items()
|
for key, value in properties.items()
|
||||||
|
|
Loading…
Reference in a new issue