0
votes
6answers
215 views
How to ensure only one instance of a ruby script is running at a time
I have a process that runs on cron every five minutes. Usually, it takes only a few seconds to run, but sometimes it takes several minutes. I want to ensure that only one version of this is running …
1
vote
How to ensure only one instance of a ruby script is running at a time
Ok, working off notes from @shodanex's pointer, here's what I have. I rubied it up a little bit (though I don't know of a touch analogue in Ruby).
tmp_file = File.expand_path(File.d …
