From c4b4fc03b0ff5b7a05384ccfe1b7a31810255399 Mon Sep 17 00:00:00 2001 From: James Vega Date: Mon, 27 Feb 2006 20:09:41 +0000 Subject: [PATCH] scripts/supybot: Stop setting a umask. We'll just obey the user's umask setting. --- scripts/supybot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/supybot b/scripts/supybot index 36ac6f6f3..ede63b91a 100644 --- a/scripts/supybot +++ b/scripts/supybot @@ -282,7 +282,8 @@ if __name__ == '__main__': signal.signal(signal.SIGHUP, signal.SIG_IGN) log.info('Completed daemonization. Current PID: %s', os.getpid()) - os.umask(077) + # Stop setting our own umask. See comment above. + #os.umask(077) # Let's write the PID file. This has to go after daemonization, obviously. pidFile = conf.supybot.pidFile()