Changeset 8919
- Timestamp:
- 02/21/08 04:40:26 (5 months ago)
- Files:
-
- tools/capistrano/CHANGELOG (modified) (1 diff)
- tools/capistrano/lib/capistrano/recipes/deploy.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/capistrano/CHANGELOG
r8918 r8919 1 1 *SVN* 2 3 * Fix incorrect reference to the 'setup' task in task documentation [rajeshduggal] 2 4 3 5 * Don't try to kill the spawner process on deploy:stop if no spawner process exists [Jamis Buck] tools/capistrano/lib/capistrano/recipes/deploy.rb
r8917 r8919 111 111 Prepares one or more servers for deployment. Before you can use any \ 112 112 of the Capistrano deployment tasks with your project, you will need to \ 113 make sure all of your servers have been prepared with `cap setup'. When \113 make sure all of your servers have been prepared with `cap deploy:setup'. When \ 114 114 you add a new server to your cluster, you can easily run the setup task \ 115 115 on just that server by specifying the HOSTS environment variable: 116 116 117 $ cap HOSTS=new.server.com setup117 $ cap HOSTS=new.server.com deploy:setup 118 118 119 119 It is safe to run this task on servers that have already been set up; it \