[Zope-Checkins] CVS: Zope/inst/in - make_instance.py.in:1.1.2.2

Chris McDonough chrism@zope.com
Sat, 5 Oct 2002 22:54:43 -0400


Update of /cvs-repository/Zope/inst/in
In directory cvs.zope.org:/tmp/cvs-serv4179/in

Modified Files:
      Tag: chrism-install-branch
	make_instance.py.in 
Log Message:
Split up zctl into a stub and a library.


=== Zope/inst/in/make_instance.py.in 1.1.2.1 => 1.1.2.2 ===
--- Zope/inst/in/make_instance.py.in:1.1.2.1	Sun Sep 29 17:46:24 2002
+++ Zope/inst/in/make_instance.py.in	Sat Oct  5 22:54:42 2002
@@ -20,7 +20,7 @@
 def main(zopehome, insthome, skel_dir, in_dir, config_location, user, passwd):
     make_insthome(zopehome, insthome, skel_dir, in_dir, config_location)
     write_inituser(insthome, user, passwd)
-    print 'Done!  Use "%s/zctl start" to start Zope.' % insthome
+    print 'Done!  Use "%s/zctl.py start" to start Zope.' % insthome
 
 def usage():
     print ("""
@@ -106,8 +106,8 @@
     map = {'PYTHON':sys.executable,
            'BASE_DIR':zopehome,
            'CONFIG_LOCATION':config_location}
-    file_from_infile.main(os.path.join(in_dir, 'zctl.in'),
-                          os.path.join(insthome, 'zctl'), map, 0)
+    file_from_infile.main(os.path.join(in_dir, 'zctl.py.in'),
+                          os.path.join(insthome, 'zctl.py'), map, 0)
 
 def write_inituser(insthome, username, passwd):
     ac_path=os.path.join(insthome, 'inituser')