Re: make the server not to start in case the Initialization is a failure

2004-09-10 Thread Sander Temme
On Sep 10, 2004, at 4:37 PM, Ian Holsman wrote: can you init the config file in a post-config hook instead of the child? that can cause the apache to not start. ... since calling exit() will make the parent go away. FWIW.. you haven't considered the case where init-child is executed on a running

Re: make the server not to start in case the Initialization is a failure

2004-09-10 Thread Ian Holsman
Auth Module\n"); nRet = InitConfigFile(pPool); if (nRet == FALSE) return FALSE; else return TRUE; } How do make the server not to start in case the Initialization is a failure. The same used to work on apache 1.3x in case I returned exit(2

make the server not to start in case the Initialization is a failure

2004-09-10 Thread siba.dora
ule\n"); nRet = InitConfigFile(pPool); if (nRet == FALSE) return FALSE; else return TRUE; } How do make the server not to start in case the Initialization is a failure. The same used to work on apache 1.3x in case I returned exit(2), but its n