blob: bb0391a7cadebf86a9e1652cd539cf4ae2916044 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#!/usr/bin/env python
2import os
3import sys
4import subprocess
5
6# Detach from the controlling terminal and parent process by forking twice to daemonize ourselves,
7# then run the command passed as argv[1]. Send log data to argv[2].
8
9pid = os.fork()
10if (pid == 0):
11 os.setsid()
12 pid = os.fork()
13 if (pid != 0):
14 os._exit(0)
15else:
16 sys.exit()
17
18
19si = file(os.devnull, 'r')
20so = file(sys.argv[2], 'w')
21se = so
22
23# Replace those fds with our own
24os.dup2(si.fileno(), sys.stdin.fileno())
25os.dup2(so.fileno(), sys.stdout.fileno())
26os.dup2(se.fileno(), sys.stderr.fileno())
27
28ret = subprocess.call(sys.argv[1], shell=True)
29
30os._exit(ret)
31