diff options
author | Ruben Pollan <meskio@sindominio.net> | 2017-03-17 00:44:00 +0100 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2017-03-17 19:13:23 +0100 |
commit | 1d09d1a079f8ce577de13ab43c2e9add7a6247bc (patch) | |
tree | a84d324912b13b68c9990a515267f0973cf289b3 /src/leap/bitmask/vpn/service.py | |
parent | 09bf881b4f457f731c5a49e88822bc731eda2c96 (diff) |
[bug] let's remove hardcoded providers
Diffstat (limited to 'src/leap/bitmask/vpn/service.py')
-rw-r--r-- | src/leap/bitmask/vpn/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py index 2c7c69c..0a26b28 100644 --- a/src/leap/bitmask/vpn/service.py +++ b/src/leap/bitmask/vpn/service.py @@ -150,5 +150,5 @@ class VPNService(HookableService): cert_path = key_path = prefix + "/client/openvpn.pem" ca_path = prefix + "/ca/cacert.pem" - self._vpn = VPNManager(remotes, cert_path, key_path, ca_path, + self._vpn = VPNManager(provider, remotes, cert_path, key_path, ca_path, extra_flags) |