Re: rc script timing issues?

2004-03-10 Thread Peter Risdon
Shaun T. Erickson wrote: On 5.2.1-RELEASE-p1, in /usr/local/etc/rc.d, I have scripts that start my MySQL database, and that start my Courier-IMAP daemons. When the scripts for courier run, one of the first things they do is start authdaemond, which should fire up several authdaemond.mysql

Re: rc script timing issues?

2004-03-10 Thread Peter Risdon
Peter Risdon wrote: Shaun T. Erickson wrote: On 5.2.1-RELEASE-p1, in /usr/local/etc/rc.d, I have scripts that start my MySQL database, and that start my Courier-IMAP daemons. When the scripts for courier run, one of the first things they do is start authdaemond, which should fire up several

RE: rc script timing issues?

2004-03-10 Thread Remko Lodder
I thought that under /usr/local/etc/rc.d every starts alphabetically (weird word :P) so you could try and start the mysql package as a_mysql.sh or something so that it is processed earlier on, i have exactly the same issue, my webservers etc all come up {using SQL, but SQL is started later on,

Re: rc script timing issues?

2004-03-10 Thread Shaun T. Erickson
Peter Risdon wrote: From man 8 rc.d: The scripts within each directory are executed in lexicographical order. If a specific order is required, numbers may be used as a prefix to the existing filenames, so for example 100.foo would be executed before 200.bar;