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

Fred L. Drake, Jr. fred@zope.com
Mon, 17 Mar 2003 17:16:26 -0500


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

Modified Files:
      Tag: new-install-branch
	zopectl.py 
Log Message:
zopectl shouldn't handle the effective user setting for Zope; that has
to be done within the appserver to allow it to bind to low-numbered
ports if it has been configured to do so.


=== Zope/bin/zopectl.py 1.1.2.1 => 1.1.2.2 ===
--- Zope/bin/zopectl.py:1.1.2.1	Mon Mar 17 15:10:48 2003
+++ Zope/bin/zopectl.py	Mon Mar 17 17:16:25 2003
@@ -82,7 +82,7 @@
         self.directory = config.instancehome
         self.program = [os.path.join(self.directory, "bin", "runzope")]
         self.sockname = os.path.join(config.clienthome, "zopectlsock")
-        self.user = config.effective_user
+        self.user = None
         self.python = sys.executable
         self.zdrun = os.path.join(os.path.dirname(zdaemon.__file__),
                                   "zdrun.py")