diff options
author | Kali Kaneko <kali@leap.se> | 2018-01-23 01:18:46 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-01-25 01:19:20 +0100 |
commit | b3e9efc82a04cd0f896b38dbe155a4191db393e5 (patch) | |
tree | 28a1a071b8bf40f055bae31b07fa06051259bb67 /src/leap/bitmask/vpn/autostart.py | |
parent | bfd941fa8f7938698a5c5693d601c098250284e5 (diff) |
[bug] do not fail if the provider does not allow anonymous vpn
Since bonafide was not catching the error 401, an attempt to bootstrap a
provider that does not support anonvpn with the new setup was resulting
in a json that was containing only an error message.
this was producing an error when trying to access the configuration for
that provider's EIP section.
we now avoid writing a json config file if an error 401 is found, and
also catch the exception for a ValueError when the EIP section is not
found in the provider's configuration.
Diffstat (limited to 'src/leap/bitmask/vpn/autostart.py')
-rw-r--r-- | src/leap/bitmask/vpn/autostart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/vpn/autostart.py b/src/leap/bitmask/vpn/autostart.py index 858ea4ab..0572e9d5 100644 --- a/src/leap/bitmask/vpn/autostart.py +++ b/src/leap/bitmask/vpn/autostart.py @@ -20,7 +20,7 @@ Terminal=false Leave an autostart file in the user's autostart path. The bundle could in principle find its own path and add - the path to the bitmaskd binary in the Exec entry. + the path to the bitmaskd binary in the Exec entry. But for now it's simpler to do autostart only for the debian packages or any other method that puts bitmask in the path. On the other hand, we want to reduce the modifications that the bundle |