summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/vpn/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/vpn/service.py')
-rw-r--r--src/leap/bitmask/vpn/service.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py
index fc39bcc8..343a2d35 100644
--- a/src/leap/bitmask/vpn/service.py
+++ b/src/leap/bitmask/vpn/service.py
@@ -62,13 +62,12 @@ class VPNService(HookableService):
self._basepath = basepath
def startService(self):
- print "Starting VPN Service..."
# TODO this could trigger a check for validity of the certificates,
# etc.
super(VPNService, self).startService()
def stopService(self):
- print "Stopping VPN Service..."
+ self.stop_vpn()
super(VPNService, self).stopService()
@defer.inlineCallbacks
@@ -105,9 +104,6 @@ class VPNService(HookableService):
raise Exception('Could not start VPN, check logs')
def stop_vpn(self):
- # TODO -----------------------------
- # when shutting down the main bitmaskd daemon, this should be called.
-
if not self._tunnelmanager:
raise Exception('VPN was not running')