[Zope-Checkins] CVS: Zope/inst/skel/inst/in - zopectl.py.in:1.1.2.1 zope.conf.in:1.1.2.11 zctl.py.in:NONE

Chris McDonough chrism@zope.com
Mon, 13 Jan 2003 12:15:27 -0500


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

Modified Files:
      Tag: chrism-install-branch
	zope.conf.in 
Added Files:
      Tag: chrism-install-branch
	zopectl.py.in 
Removed Files:
      Tag: chrism-install-branch
	zctl.py.in 
Log Message:
Renamed "zctl" to "zopectl" (as per TODO).


=== Added File Zope/inst/skel/inst/in/zopectl.py.in ===
#!<<PYTHON>>
##############################################################################
#
# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################
"""
   Finds ZctlLib and starts an interactive ZCtl session.
"""

__version__ = '$Revision: 1.1.2.1 $'[11:-2]

import sys, os

CONFIG_LOCATION = r'<<CONFIG_LOCATION>>'
SOFTWARE_HOME = r'<<SOFTWARE_HOME>>'

sys.path.insert(0, SOFTWARE_HOME)
sys.path = filter(None, sys.path) # strip empties from sys.path

if __name__ == '__main__':
    from Zope.Startup import ZctlLib
    ZctlLib.start(CONFIG_LOCATION)



=== Zope/inst/skel/inst/in/zope.conf.in 1.1.2.10 => 1.1.2.11 ===
--- Zope/inst/skel/inst/in/zope.conf.in:1.1.2.10	Fri Jan 10 14:33:10 2003
+++ Zope/inst/skel/inst/in/zope.conf.in	Mon Jan 13 12:14:54 2003
@@ -239,7 +239,7 @@
 #
 # Description:
 #     The path to a "lock file" which will be locked by Zope while it's
-#     running. This file is used by zctl.py to determine if Zope is
+#     running. This file is used by zopectl.py to determine if Zope is
 #     currently running. This defaults to client-home/Z2.lock.
 #
 # Influences: zope.py configuration

=== Removed File Zope/inst/skel/inst/in/zctl.py.in ===