[Zope-Checkins] SVN: Zope/trunk/ - Collector #1323: applied patch to fix umask problem in zdctl

Andreas Jung andreas at andreas-jung.com
Mon May 30 10:06:46 EDT 2005


Log message for revision 30558:
  
        - Collector #1323: applied patch to fix umask problem in zdctl
  

Changed:
  U   Zope/trunk/doc/CHANGES.txt
  U   Zope/trunk/lib/python/zdaemon/zdctl.py

-=-
Modified: Zope/trunk/doc/CHANGES.txt
===================================================================
--- Zope/trunk/doc/CHANGES.txt	2005-05-30 11:58:46 UTC (rev 30557)
+++ Zope/trunk/doc/CHANGES.txt	2005-05-30 14:06:16 UTC (rev 30558)
@@ -34,6 +34,8 @@
 
     Bugs fixed
 
+      - Collector #1323: applied patch to fix umask problem in zdctl
+
       - Collector #1781: made 'create_mount_points' ZConfig option actually
         work (thanks to Dieter Maurer for the patch).
 

Modified: Zope/trunk/lib/python/zdaemon/zdctl.py
===================================================================
--- Zope/trunk/lib/python/zdaemon/zdctl.py	2005-05-30 11:58:46 UTC (rev 30557)
+++ Zope/trunk/lib/python/zdaemon/zdctl.py	2005-05-30 14:06:16 UTC (rev 30558)
@@ -213,7 +213,7 @@
             args += self._get_override("-f", "forever", flag=1)
             args += self._get_override("-s", "sockname")
             args += self._get_override("-u", "user")
-            args += self._get_override("-m", "umask")
+            args += self._get_override("-m", "umask", oct(self.options.umask))
             args += self._get_override(
                 "-x", "exitcodes", ",".join(map(str, self.options.exitcodes)))
             args += self._get_override("-z", "directory")



More information about the Zope-Checkins mailing list