[Zope-Checkins] CVS: Zope/bin - zope.py:1.1.2.2

Chris McDonough chrism@zope.com
Sun, 6 Oct 2002 17:43:22 -0400


Update of /cvs-repository/Zope/bin
In directory cvs.zope.org:/tmp/cvs-serv16746/bin

Modified Files:
      Tag: chrism-install-branch
	zope.py 
Log Message:
Added support for creating NT services from instance homes.

This works by building an instance home normally and then from the
instance home running "bin\ntservice.py install".  The service is named
after the instance, and each instance can have its own service installed.

In the process, moved "zctl.py" into a "bin" directory, and moved "zope.conf"
into an "etc" directory inside an instance home.


=== Zope/bin/zope.py 1.1.2.1 => 1.1.2.2 ===
--- Zope/bin/zope.py:1.1.2.1	Sun Sep 29 17:48:24 2002
+++ Zope/bin/zope.py	Sun Oct  6 17:42:51 2002
@@ -73,7 +73,7 @@
     config_location = 'zope.conf'
     url = None
     sw_home = SOFTWARE_HOME
-    longopts = [ "help", "config-location="]
+    longopts = [ "help", "config-location=", "software_home="]
     try:
         opts, args = getopt.getopt(sys.argv[1:], "h", longopts)
     except getopt.GetoptError, v: