summaryrefslogtreecommitdiffstats
path: root/certmaster/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'certmaster/utils.py')
-rwxr-xr-xcertmaster/utils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/certmaster/utils.py b/certmaster/utils.py
index 61721ac..22b0afb 100755
--- a/certmaster/utils.py
+++ b/certmaster/utils.py
@@ -48,6 +48,10 @@ def daemonize(pidfile=None):
pid = os.fork()
if pid > 0:
sys.exit(0)
+ os.close(0)
+ os.close(1)
+ os.close(2)
+ os.cwd("/")
os.setsid()
os.umask(0)
pid = os.fork()