Fix OpenVPN client configuration generation

This commit is contained in:
Lauri Võsandi 2017-04-13 18:17:05 +03:00
parent a22e1eb557
commit d7a2c7c193
1 changed files with 9 additions and 8 deletions

View File

@ -108,14 +108,6 @@ def certidude_request(fork, renew):
except NoOptionError:
pass
try:
endpoint_port = service_config.getint(endpoint, "port")
except NoOptionError:
endpoint_port = 1194
try:
endpoint_proto = service_config.get(endpoint, "proto")
except NoOptionError:
endpoint_proto = "udp"
try:
endpoint_insecure = clients.getboolean(authority, "insecure")
except NoOptionError:
@ -247,6 +239,15 @@ def certidude_request(fork, renew):
# OpenVPN set up with NetworkManager
if service_config.get(endpoint, "service") == "network-manager/openvpn":
try:
endpoint_port = service_config.getint(endpoint, "port")
except NoOptionError:
endpoint_port = 1194
try:
endpoint_proto = service_config.get(endpoint, "proto")
except NoOptionError:
endpoint_proto = "udp"
# NetworkManager-strongswan-gnome
nm_config_path = os.path.join("/etc/NetworkManager/system-connections", endpoint)
if os.path.exists(nm_config_path):
click.echo("Not creating %s, remove to regenerate" % nm_config_path)