mirror of https://github.com/fail2ban/fail2ban
- Return value of createDaemon() changed to True
git-svn-id: https://fail2ban.svn.sourceforge.net/svnroot/fail2ban/trunk@84 a942ae1a-1317-0410-a47c-b1dcaea8d6050.6
parent
54f2fc0ae5
commit
d6c1eb1543
|
@ -402,7 +402,7 @@ if __name__ == "__main__":
|
|||
retCode = createDaemon()
|
||||
signal.signal(signal.SIGTERM, sigTERMhandler)
|
||||
logSys.set_target(conf["logfile"])
|
||||
if retCode != 0:
|
||||
if not retCode:
|
||||
logSys.error("Unable to start daemon")
|
||||
sys.exit(-1)
|
||||
elif c == "logging" and conf[c]:
|
||||
|
|
Loading…
Reference in New Issue