From: Adrian Likins Date: Fri, 5 Sep 2008 18:15:52 +0000 (-0400) Subject: Merge branch 'master' of ssh://alikins@git.fedoraproject.org/git/hosted/certmaster X-Git-Tag: v0.24~6 X-Git-Url: https://pwan.org/git/?p=certmaster.git;a=commitdiff_plain;h=d7d7203553c024cbddd726d499eb351b460cb9f3;hp=7bcf299ccedeb8d22b163f24657eb801cd31bbd9 Merge branch 'master' of ssh://alikins@git.fedoraproject.org/git/hosted/certmaster --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..35a6b22 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.py~ +*.pyc +*~ +\#*\# +build/ diff --git a/AUTHORS b/AUTHORS index 2b25c38..5ab8e48 100644 --- a/AUTHORS +++ b/AUTHORS @@ -10,6 +10,7 @@ Additional patches and contributions by ... Tanabe Ken-ichi Steve Salesvan + Jonathan Barber ... [ send in patches to get your name here ] diff --git a/certmaster/utils.py b/certmaster/utils.py index 588e986..22b0afb 100755 --- a/certmaster/utils.py +++ b/certmaster/utils.py @@ -44,10 +44,14 @@ def daemonize(pidfile=None): Writes the new PID to the provided file name if not None. """ - print pidfile +# print pidfile 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() @@ -57,12 +61,15 @@ def daemonize(pidfile=None): open(pidfile, "w").write(str(pid)) sys.exit(0) + def nice_exception(etype, evalue, etb): - # FIXME: I believe we can remove this function etype = str(etype) - lefti = etype.index("'") + 1 - righti = etype.rindex("'") - nicetype = etype[lefti:righti] + try: + lefti = etype.index("'") + 1 + righti = etype.rindex("'") + nicetype = etype[lefti:righti] + except: + nicetype = etype nicestack = string.join(traceback.format_list(traceback.extract_tb(etb))) return [ REMOTE_ERROR, nicetype, str(evalue), nicestack ]