Commit 52e69f62 authored by Andreas Jung's avatar Andreas Jung

parent 8bd78d11
......@@ -34,6 +34,8 @@ Zope Changes
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).
......
......@@ -213,7 +213,7 @@ class ZDCmd(cmd.Cmd):
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")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment