This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## https://gist.github.com/977188 | |
# | |
# If your workers are inactive for a long period of time, they'll | |
# lose their MySQL connection. | |
# | |
# This hack ensures we re-connect whenever a connection is lost. | |
# | |
# From: https://gist.github.com/238999 | |
# | |
# Added retrying to prevent infinite loop. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash "install #{name} gems" do | |
cwd "/tmp/#{name}" | |
code <<-end_code | |
for gem_file in `ls *.gem` | |
do | |
gem install ./$gem_file | |
done | |
end_code | |
end |