[Zope-Checkins] CVS: Zope/lib/python/Zope/Startup - datatypes.py:1.2.2.1

Fred L. Drake, Jr. fred@zope.com
Tue, 11 Feb 2003 15:19:06 -0500


Update of /cvs-repository/Zope/lib/python/Zope/Startup
In directory cvs.zope.org:/tmp/cvs-serv30651

Modified Files:
      Tag: new-install-branch
	datatypes.py 
Log Message:
Remove more of the daemonizing support code that's no longer needed.


=== Zope/lib/python/Zope/Startup/datatypes.py 1.2 => 1.2.2.1 ===
--- Zope/lib/python/Zope/Startup/datatypes.py:1.2	Wed Jan 29 15:25:15 2003
+++ Zope/lib/python/Zope/Startup/datatypes.py	Tue Feb 11 15:19:03 2003
@@ -13,14 +13,6 @@
             )
     return value
 
-def use_daemon_process(value):
-    from ZConfig.datatypes import asBoolean
-    daemonize = asBoolean(value)
-    # cannot use daemon process on non-POSIX platforms
-    if os.name != 'posix':
-        return False
-    return daemonize
-
 # log-related datatypes
 # (the loghandler datatypes come from the zLOG package)