This file contains hidden or 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
| # Hoptoad integration example. | |
| task "deploy:before" => "isolate:dotgems" do | |
| if /\.gems/ =~ `git status` | |
| abort "Changed gems. Commit '.gems' and deploy again." | |
| end | |
| ENV["TO"] = Deploy.env | |
| end |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # god Startup script for God monitoring tool. | |
| # | |
| # chkconfig: - 85 15 | |
| # description: god monitors your system | |
| # | |
| CONF_DIR=/etc/god/* | |
| PID=/var/run/god.pid |
NewerOlder