From 2a33e5aeb378a5096293a5e082895bb831a35306 Mon Sep 17 00:00:00 2001 From: quackerd Date: Mon, 4 May 2020 05:58:24 -0400 Subject: [PATCH] fix --- client.conf | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client.conf b/client.conf index 88a5f97..369b4a1 100644 --- a/client.conf +++ b/client.conf @@ -20,7 +20,7 @@ "settings": { "vnext": [ { - "address": "nocturne.quacker.net", + "address": "{{ server_name }}", "port": 443, "users": [ { diff --git a/setup.py b/setup.py index 07ce19f..ff9122f 100644 --- a/setup.py +++ b/setup.py @@ -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)