diff --git a/util/client/generate_client.py b/util/client/generate_client.py index 145453f..dc285ed 100644 --- a/util/client/generate_client.py +++ b/util/client/generate_client.py @@ -22,7 +22,7 @@ def generate_client_config(username: str): # Step 1: Generate the client certificate print(f"Generating certificate for user: {username}...") try: - command = ["./easyrsa", "build-client-full", username, "nopass"] + command = ["./easyrsa", "--batch", "build-client-full", username, "nopass"] process = subprocess.run( command, cwd=easyrsa_dir,