Make start_all automatically daemonize services
authordbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 9 Nov 2010 17:28:29 +0000 (17:28 +0000)
committerdbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 9 Nov 2010 17:28:29 +0000 (17:28 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2068 9efc2488-bf62-4759-914b-345cdb29e865

src/python/opensrf.py.in

index cc5d8f4..49c6344 100755 (executable)
@@ -148,6 +148,10 @@ def do_start_all():
     Start all Python services listed in the OpenSRF configuration file
     '''
 
+    # You can't start more than one service without daemonizing
+    global as_daemon
+    as_daemon == True
+
     print "* starting all services for %s " % domain
     for service in services.keys():
         do_start(service)