I was following these instructions for capistrano deployment:
https://github.com/capistrano/capistrano/wiki/2.x-From-The-Beginning
Under the section "Application Layer Initialization", it says:
"We need to tell Capistrano how to “spin up” (start) our application
layer. The precise way this works will vary depending on how you’re
running your application layer. If you’re using mod_rails, for
instance, it will be very different than if you’re using mongrel.
Here, I’ll assume you’re using mongrel. By default, when Capistrano
needs to start your application layer, it will try to execute a script
called “spin”, in the “script” directory of your application, on each
remote server. We’ll need to write that script, and then check it into
the source repository."
Well I'm using mod_rails/passenger. Do I need to be writing any
scripts as it suggests when using mod_rails?