I am following the instructions given at slicehost at this link.
http://articles.slicehost.com/2008/1/18/capistrano-series-configuring-capistrano-1
Here is the setup of my deploy.rb file
=========================================================
set :application, "project1"
set :user, "username"
set :repository, "svn+project1ssh://123.45.67.890/home/username/
repository/project1"
set :port, port_num
# If you aren't deploying to /u/apps/#{application} on the target
# servers (which is the default), you can specify the actual location
# via the :deploy_to variable:
set :deploy_to, "/home/username/public_html/#{application}"
role :app, application
role :web, application
role :db, application, :primary => true
=========================================================
I have created a tunnel in my ~/.subversion/config file as shown below
project1ssh = /usr/bin/ssh -p port_num -l username
=========================================================
When i run the command cap deploy:setup i get the following error
cap deploy:setup
* executing `deploy:setup'
* executing "umask 02 && mkdir -p /home/username/public_html/
project1 /home/username/public_html/project1/releases\
/home/username/public_html/project1/shared /home/username/public_html/
project1/shared/system /home/username/public_html\
/project1/shared/log /home/username/public_html/project1/shared/pids"
servers: ["project1"]
[DEBUG] Mon Feb 25 09:06:09 -0800 2008 -- transport.session:
connecting
connection failed for: project1 (SocketError: getaddrinfo: No address
associated with nodename)
What does this error mean and how can i fix this?
--~--~---------~--~----~------------~-------~--~----~
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/capistrano
-~----------~----~----~----~------~----~------~--~---