1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Fix invalid umask

Fix #264
This commit is contained in:
Julien Duponchelle 2015-07-15 13:58:08 +02:00
parent 6d678898ef
commit ddddac426b

View File

@ -47,7 +47,7 @@ def daemonize():
# Decouple from parent environment
os.setsid()
os.umask(700)
os.umask(0o007)
# Do second fork
try: