summaryrefslogtreecommitdiffstats
path: root/callback_plugins
diff options
context:
space:
mode:
authorSeth Vidal <skvidal@fedoraproject.org>2013-06-28 21:18:44 +0000
committerSeth Vidal <skvidal@fedoraproject.org>2013-06-28 21:18:44 +0000
commitd4f08e57b073fb7aaf9e84316c3380c08759d26d (patch)
tree3317dcb19709390c7e84e59afd6456f995e9541e /callback_plugins
parent091587af88834776dc266e7583bdce344cb3c53e (diff)
downloadansible-d4f08e57b073fb7aaf9e84316c3380c08759d26d.tar.gz
ansible-d4f08e57b073fb7aaf9e84316c3380c08759d26d.tar.xz
ansible-d4f08e57b073fb7aaf9e84316c3380c08759d26d.zip
not 750, 0750
Diffstat (limited to 'callback_plugins')
-rw-r--r--callback_plugins/logdetail.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/callback_plugins/logdetail.py b/callback_plugins/logdetail.py
index 718ed7a73..87b422652 100644
--- a/callback_plugins/logdetail.py
+++ b/callback_plugins/logdetail.py
@@ -36,7 +36,7 @@ class LogMech(object):
self.logpath = LOG_PATH
if not os.path.exists(self.logpath):
try:
- os.makedirs(self.logpath, mode=750)
+ os.makedirs(self.logpath, mode=0750)
except OSError, e:
if e.errno != 17:
raise