Commit dc8feb79 by Jon Miller

Do not need to chmod cache file each time

This is particularly important if you've manually ensured you have write
access via group permissions and not by owner.
parent 5111e0c2
...@@ -60,7 +60,7 @@ if not os.path.exists(SW_REPORT): ...@@ -60,7 +60,7 @@ if not os.path.exists(SW_REPORT):
# Pre-startup work # Pre-startup work
if not os.path.exists(CACHE_DIR): if not os.path.exists(CACHE_DIR):
os.mkdir(CACHE_DIR) os.mkdir(CACHE_DIR)
os.chmod(CACHE_DIR, 0775) os.chmod(CACHE_DIR, 2775)
# Helper functions # Helper functions
#------------------------------ #------------------------------
...@@ -77,7 +77,6 @@ def spacewalk_report(name): ...@@ -77,7 +77,6 @@ def spacewalk_report(name):
p = subprocess.Popen([SW_REPORT, name], stdout=fh) p = subprocess.Popen([SW_REPORT, name], stdout=fh)
p.wait() p.wait()
fh.close() fh.close()
os.chmod(cache_filename, 0664)
lines = open(cache_filename, 'r').readlines() lines = open(cache_filename, 'r').readlines()
keys = lines[0].strip().split(',') keys = lines[0].strip().split(',')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment