Skip to content
Snippets Groups Projects
Commit 6a5e841d authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

ensure-dirs: Don't hardcode ssconf file group


Otherwise chown(2) will fail when noded doesn't run as root.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent e5afb848
No related branches found
No related tags found
No related merge requests found
......@@ -149,7 +149,7 @@ def GetPaths():
ss = ssconf.SimpleStore()
for ss_path in ss.GetFileList():
paths.append((ss_path, FILE, constants.SS_FILE_PERMS,
getent.noded_uid, 0, False))
getent.noded_uid, getent.noded_gid, False))
paths.extend([
(pathutils.QUEUE_DIR, DIR, 0700, getent.masterd_uid,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment