The 'run' method runs commands on the different servers you deploy to. Is their a command that runs commands on your personal box? I want to run 'curl' after I deploy the website. Any suggestions?
Thanks
The 'run' method runs commands on the different servers you deploy to. Is their a command that runs commands on your personal box? I want to run 'curl' after I deploy the website. Any suggestions?
Thanks
You can use simple ruby inside your cap recipe. system, IO.popen, etc come to mind. Even backticks work.
Vish
Used system()... worked perfectly. Thanks