scripts/supybot: Stop setting a umask. We'll just obey the user's umask setting.

This commit is contained in:
James Vega 2006-02-27 20:09:41 +00:00
parent 47d84c1f7a
commit c4b4fc03b0
1 changed files with 2 additions and 1 deletions

View File

@ -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()