diff options
author | Tomas Touceda <chiiph@leap.se> | 2013-06-21 14:17:09 -0300 |
---|---|---|
committer | Tomas Touceda <chiiph@leap.se> | 2013-06-21 14:19:01 -0300 |
commit | b265380ebedb1603933251a6e8fd0e7c850eba5a (patch) | |
tree | 862b00f09937817ddb1a6bcbd321df8069220630 /src/leap/services/eip | |
parent | 4cfe344fceb16d19936fa8d0d2f6bdaa7e747740 (diff) |
Use an alternative method to check for file permission
Diffstat (limited to 'src/leap/services/eip')
-rw-r--r-- | src/leap/services/eip/vpnlaunchers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/leap/services/eip/vpnlaunchers.py b/src/leap/services/eip/vpnlaunchers.py index 762b536d..c5b21eac 100644 --- a/src/leap/services/eip/vpnlaunchers.py +++ b/src/leap/services/eip/vpnlaunchers.py @@ -24,6 +24,7 @@ import getpass import os import platform import subprocess +import stat try: import grp except ImportError: @@ -167,7 +168,7 @@ def _has_updown_scripts(path, warn=True): "Might produce DNS leaks." % (path,)) # XXX check if applies in win - is_exe = os.access(path, os.X_OK) + is_exe = (stat.S_IXUSR & os.stat(path)[stat.ST_MODE] != 0) if warn and not is_exe: logger.error("Up/down script %s is not executable. " "Might produce DNS leaks." % (path,)) |