RE: Best place for this script to run...

2003-01-27 Thread Robert Adkins
Subject: Re: Best place for this script to run... On Mon, 2003-01-27 at 16:44, Robert Adkins wrote: > Hello All, > > I have a script that I need to run at startup that will wait for a > significant amount of time and then execute on the servers. > > Basically, I need b

Re: Best place for this script to run...

2003-01-27 Thread Mike Burger
Best bet is probably to insert a call to the script at the end of your rc.local file, probably with a & at the end of the command line, and then have the script start with a "wait 300" to give you the five minute wait you're looking for. On Mon, 27 Jan 2003, Robert Adkins wrote: > Hello All, >

Re: Best place for this script to run...

2003-01-27 Thread Bret Hughes
On Mon, 2003-01-27 at 16:44, Robert Adkins wrote: > Hello All, > > I have a script that I need to run at startup that will wait for a > significant amount of time and then execute on the servers. > > Basically, I need both servers to run this script at boot and mount up > drives

Best place for this script to run...

2003-01-27 Thread Robert Adkins
Hello All, I have a script that I need to run at startup that will wait for a significant amount of time and then execute on the servers. Basically, I need both servers to run this script at boot and mount up drives on the other server, in cases of power outages. What I am t