diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-03 18:16:31 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-02-23 00:40:36 +0100 |
commit | 409a4c663ec3c0b4a394fcaa6d4b1c6b527f8522 (patch) | |
tree | 35be6241476c972f2ff4a3f97e8a2f6f46f3f988 /src/leap/bitmask/vpn/service.py | |
parent | 5103c1c46dadb15af0327c8069d4c321f4f93d4f (diff) |
[feature] eip start/stop working
Diffstat (limited to 'src/leap/bitmask/vpn/service.py')
-rw-r--r-- | src/leap/bitmask/vpn/service.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py index 72fd2bb..3edae35 100644 --- a/src/leap/bitmask/vpn/service.py +++ b/src/leap/bitmask/vpn/service.py @@ -65,15 +65,13 @@ class EIPService(HookableService): self._setup(domain) self._eip.start() self._started = True - return "Starting" + return {'result': 'started'} def stop_vpn(self): if self._started: self._eip.stop() self._started = False - return "Stopping" - else: - return "Not started" + return {'result': 'stopped'} def do_status(self): # TODO -- get status from a dedicated STATUS CLASS |