Slightly off topic, but relevant to Capistrano users. I just released
the first version of the Teleport gem - easy Ubuntu server setup via
teleportation. Teleport sets up servers by "teleporting" to the
machine and running itself there. It installs Ruby, then follows the
instructions laid out in your Telfile to customize the server.

https://github.com/rglabs/teleport

Here's a sample Telfile:

user "admin"
ruby "1.9.2"
apt "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist
10gen", :key => "7F0CAB10"
role :app, :packages => [:memcached]
role :db, :packages => [:mongodb-10gen]
server "server_app1", :role => :app
server "server_db1", :role => :db
packages [:atop, :emacs, :gcc]

The role/server setup is similar to how Capistrano works, though the
syntax is slightly different. Teleport is designed to work hand-in-
hand with Capistrano, with your Telfile nestled in next to your
Capfile. Thanks,

Adam

-- 
* You received this message because you are subscribed to the Google Groups 
"Capistrano" group.
* To post to this group, send email to [email protected]
* To unsubscribe from this group, send email to 
[email protected] For more options, visit this group at 
http://groups.google.com/group/capistrano?hl=en

Reply via email to