kill ldap: -INT or -HUP

2006-06-21 Thread Lise Didillon
hello, what is the best to kill ldap in a bash script: kill -INT or kill -HUP I see kill -INT in LDAP admin guide but allways kill -HUP is used in the openLdap test scripts. I was thinking that -HUP is used when you want to read again the configuration file Thank you Lise Didillon

Re: kill ldap: -INT or -HUP

2006-06-21 Thread Aaron Richton
One big difference would be that HUP could trigger the gentlehup option (if configured), whereas INT never will. slapd doesn't support re-read of config through HUP; you can change config real-time with cn=config.

Re: kill ldap: -INT or -HUP

2006-06-21 Thread Kurt D. Zeilenga
At 08:08 AM 6/21/2006, Lise Didillon wrote: what is the best to kill ldap in a bash script: kill -INT or kill -HUP I see kill -INT in LDAP admin guide but allways kill -HUP is used in the openLdap test scripts. I prefer -INT, but either is fine. I was thinking that -HUP is used when you want to