Created
October 6, 2010 07:47
-
-
Save sri/612965 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# daemoinze the current process | |
# Copied from the Python Cookbook | |
import sys, os | |
LOG = "path where you want the program output to go" | |
def daemonize(): | |
try: | |
pid = os.fork() | |
if pid > 0: | |
# exit parent | |
sys.exit(0) | |
except OSError, err: | |
sys.exit(1) | |
os.umask(0) | |
os.setsid() | |
try: | |
pid = os.fork() | |
if pid > 0: | |
sys.exit(0) | |
except OSError, err: | |
sys.exit(1) | |
sys.stdout.flush() | |
sys.stderr.flush() | |
stdin = open('/dev/null', 'r') | |
try: | |
os.remove(LOG) | |
except OSError: | |
pass | |
stdout = open(LOG, "a+") | |
stderr = open(LOG, "a+", 0) | |
os.dup2(stdin.fileno(), sys.stdin.fileno()) | |
os.dup2(stdout.fileno(), sys.stdout.fileno()) | |
os.dup2(stderr.fileno(), sys.stderr.fileno()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment