diff options
author | kali <kali@leap.se> | 2012-12-12 03:29:31 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-12-12 04:23:39 +0900 |
commit | 04d423e2a89034dfb86fe305108162fd2a696079 (patch) | |
tree | 3d39b48495fbcfbfeab776af07558c345f4161cb /src/leap/util/fileutil.py | |
parent | 18be85f13abc6bc94a3725950ec16ad1adec0ab8 (diff) |
tests for openvpn options
and make the rest of tests pass after some changes
in this branch (dirtyness in config files)
Diffstat (limited to 'src/leap/util/fileutil.py')
-rw-r--r-- | src/leap/util/fileutil.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/leap/util/fileutil.py b/src/leap/util/fileutil.py index aef4cfe0..820ffe46 100644 --- a/src/leap/util/fileutil.py +++ b/src/leap/util/fileutil.py @@ -93,6 +93,11 @@ def mkdir_p(path): raise +def mkdir_f(path): + folder, fname = os.path.split(path) + mkdir_p(folder) + + def check_and_fix_urw_only(_file): """ test for 600 mode and try |