1
0

Merge pull request #3650 from SomberNight/daemon_lockfile_not_exec

make daemon lockfile not executable
This commit is contained in:
ThomasV
2018-01-06 12:38:05 +01:00
committed by GitHub

View File

@@ -58,7 +58,7 @@ def get_fd_or_server(config):
lockfile = get_lockfile(config)
while True:
try:
return os.open(lockfile, os.O_CREAT | os.O_EXCL | os.O_WRONLY), None
return os.open(lockfile, os.O_CREAT | os.O_EXCL | os.O_WRONLY, 0o644), None
except OSError:
pass
server = get_server(config)