This commit is contained in:
quackerd 2020-05-04 05:58:24 -04:00
parent 2a47a4f712
commit 2a33e5aeb3
Signed by: d
GPG Key ID: 590A22374D0B819F
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
"settings": {
"vnext": [
{
"address": "nocturne.quacker.net",
"address": "{{ server_name }}",
"port": 443,
"users": [
{

View File

@ -101,7 +101,7 @@ def main():
with open("client.conf", "r") as file:
template = jinja2.Template(file.read())
output = template.render(uuid = v_uuid, path = v_path)
output = template.render(uuid = v_uuid, path = v_path, server_name = server_name)
with open("client.conf", "w") as file:
file.write(output)