Merge pull request #3650 from SomberNight/daemon_lockfile_not_exec
make daemon lockfile not executable
This commit is contained in:
commit
c4e4d8a1dd
@ -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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user