diff --git a/worker.py b/worker.py index ebc01ed..c9e2775 100644 --- a/worker.py +++ b/worker.py @@ -391,7 +391,7 @@ def main(provider, location, server_type): listen_port = config["wireguard"]["listen_port"] persistent_keepalive = config["wireguard"]["peer_persistent_keepalive"] - chimpman_config = f""" + peer_config = f""" [Peer] PublicKey = {public_key} PresharedKey = {preshared_key} @@ -400,8 +400,8 @@ Endpoint = [{server_ip}]:{listen_port} PersistentKeepalive = {persistent_keepalive} """ - print("Chimpman Wireguard Configuration:") - print(chimpman_config) + print("Wireguard Configuration:") + print(peer_config) # Run the main function with parsed arguments