The OS log dir is used by noded, not masterd.
Signed-off-by: Balazs Lecz <[email protected]>
---
lib/tools/ensure_dirs.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/tools/ensure_dirs.py b/lib/tools/ensure_dirs.py
index a8fc21a..065b757 100644
--- a/lib/tools/ensure_dirs.py
+++ b/lib/tools/ensure_dirs.py
@@ -194,7 +194,7 @@ def GetPaths():
(confd_log, FILE, 0600, getent.confd_uid, getent.masterd_gid, False),
(noded_log, FILE, 0600, getent.noded_uid, getent.masterd_gid, False),
(rapi_log, FILE, 0600, getent.rapi_uid, getent.masterd_gid, False),
- (pathutils.LOG_OS_DIR, DIR, 0750, getent.masterd_uid, getent.daemons_gid),
+ (pathutils.LOG_OS_DIR, DIR, 0750, getent.noded_uid, getent.daemons_gid),
(pathutils.LOG_XEN_DIR, DIR, 0750, getent.noded_uid, getent.daemons_gid),
(cleaner_log_dir, DIR, 0750, getent.noded_uid, getent.noded_gid),
(master_cleaner_log_dir, DIR, 0750, getent.masterd_uid,
getent.masterd_gid),
--
1.8.2.1