summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/vpn
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/bitmask/vpn')
-rw-r--r--src/leap/bitmask/vpn/fw/firewall.py2
-rw-r--r--src/leap/bitmask/vpn/tunnel.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/bitmask/vpn/fw/firewall.py b/src/leap/bitmask/vpn/fw/firewall.py
index 71479718..f4325c77 100644
--- a/src/leap/bitmask/vpn/fw/firewall.py
+++ b/src/leap/bitmask/vpn/fw/firewall.py
@@ -114,6 +114,7 @@ class _LinuxFirewallManager(object):
if restart:
cmd.append("restart")
+ print "LAUNCHING FIREWALL..."
result = '<did not run>'
try:
retcode, result = commands.getstatusoutput(
@@ -122,6 +123,7 @@ class _LinuxFirewallManager(object):
log.failure('Error launching the firewall')
finally:
log.debug(result)
+ print "LAUNCHED FIREWALL"
emit_async(catalog.VPN_STATUS_CHANGED)
return True
diff --git a/src/leap/bitmask/vpn/tunnel.py b/src/leap/bitmask/vpn/tunnel.py
index 7dd1d25b..831f04d2 100644
--- a/src/leap/bitmask/vpn/tunnel.py
+++ b/src/leap/bitmask/vpn/tunnel.py
@@ -41,7 +41,7 @@ RESTART_WAIT = 2 # in secs
class ConfiguredTunnel(object):
"""
- A ConfiguredTunne holds the configuration for a VPN connection, and allows
+ A ConfiguredTunnel holds the configuration for a VPN connection, and allows
to control that connection.
This is the high-level object that the service knows about.