Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 662885: Update permissions on queue directories to be more permis…
Browse files Browse the repository at this point in the history
…sive. r=bustage

--HG--
extra : rebase_source : 5dcec1353f6b95b5acf3ee19b9bea3bc25847f3a
  • Loading branch information
Chris AtLee committed Sep 9, 2011
1 parent 97540a6 commit 4f1ca88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/buildtools/queuedir.py
Expand Up @@ -51,9 +51,9 @@ def getQueue(cls, name):
def setup(self):
for d in (self.tmp_dir, self.new_dir, self.cur_dir, self.log_dir, self.dead_dir):
if not os.path.exists(d):
os.makedirs(d, 0700)
os.makedirs(d, 0755)
else:
os.chmod(d, 0700)
os.chmod(d, 0755)

self.cleanup()

Expand Down

0 comments on commit 4f1ca88

Please sign in to comment.