public
Description: Remote multi-server automation tool
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
commit  414da791d23ee9184d473533843a41919e059db0
tree    c5bc8d7fa38da582d0bd94fc951ac0b1da53dd9b
parent  c0e2ee20f9ed0d7cb3a5466d1ebcf55dd41891b6
capistrano / README
100644 38 lines (21 sloc) 1.891 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
= Capistrano
 
Capistrano is a utility and framework for executing commands in parallel on multiple remote machines, via SSH. It uses a simple DSL (borrowed in part from Rake, http://rake.rubyforge.org/) that allows you to define _tasks_, which may be applied to machines in certain roles. It also supports tunneling connections via some gateway machine to allow operations to be performed behind VPN's and firewalls.
 
Capistrano was originally designed to simplify and automate deployment of web applications to distributed environments, and originally came bundled with a set of tasks designed for deploying Rails applications. The deployment tasks are now (as of Capistrano 2.0) distributed as a separate package: capistrano-deploy.
 
== Dependencies
 
* Net::SSH and Net::SFTP (http://net-ssh.rubyforge.org)
* Needle (via Net::SSH)
* HighLine (http://highline.rubyforge.org)
 
If you want to run the tests, you'll also need to have the following dependencies installed:
 
* Mocha (http://mocha.rubyforge.org)
 
== Assumptions
 
Capistrano is "opinionated software", which means it has very firm ideas about how things ought to be done, and tries to force those ideas on you. Some of the assumptions behind these opinions are:
 
* You are using SSH to access the remote servers.
* You either have the same password to all target machines, or you have public keys in place to allow passwordless access to them.
 
Do not expect these assumptions to change.
 
== Usage
 
In general, you'll use Capistrano as follows:
 
* Create a recipe file ("capfile" or "Capfile").
* Use the +cap+ script to execute your recipe.
 
Use the +cap+ script as follows:
 
    cap sometask
 
By default, the script will look for a file called one of +capfile+ or +Capfile+. The +someaction+ text indicates which task to execute. You can do "cap -h" to see all the available options and "cap -T" to see all the available tasks.