[CentOS] xServes are dead ;-( / SAN Question

Thu Nov 11 23:45:20 UTC 2010
John R Pierce <pierce at hogranch.com>

On 11/11/10 12:32 PM, Nicolas Ross wrote:
> We even have a job that is scheduled to run every 60 seconds, but can take 2
> hours to complete.
>
> Is there any scheduler under linux that approch this ?

don't even really need a scheduler for that.

put the job in a loop like...

    while true;  do
         your stuff
         sleep 60
    done;