We have two applications running on production servers, each in its own directory under /usr/local, so let's say there's /usr/local/app1 and /usr/local/app2.
Each app has a separate remote git repo.
app1 is already being deployed for quite some time via capistrano+webistrano using remote_cache including some recipe changes that were made to support our configuration (original "configurator" is no longer with us).
Now, we're trying to create a project in webistrano to allow deployments of app2, but we're running into some problems.
Looks like the problem area is the /usr/local/shared/cached-copy directory. Since it's already on the staging/production server (for app1), the deploy script looks in it for the revision from app2's HEAD but it's not there, since it is still a cloned copy of app1.
I also tried using the deploy_via:copy method, but it also fails.
This is the output from the copy attempt:
** loading stage recipe 'app2_before_deploy'
executing locally: "git ls-remote /var/repos/app2 master"
* executing `deploy'
* executing `deploy:update'
triggering before callbacks for `deploy:update'
* executing `app2_before_deploy'
** transaction: start
* pushing latest code to syncer
** transaction: commit
** transaction: start
* executing `deploy:update_code'
* getting (via checkout) revision 143e7141bd140df6428a8b49f61b8560a94b3ff1 to /tmp/20101005133505
executing locally: git clone -q --depth 30 ssh://root@remote/var/repos/app2 /tmp/20101005133505 && cd /tmp/20101005133505 && git checkout -q -b deploy 143e7141bd140df6428a8b49f61b8560a94b3ff1
* processing exclusions...
*** [deploy:update_code] rolling back
* executing "rm -rf /usr/local/releases/20101005133505; true"
servers: ["prod.prod"]
[prod.prod] executing command
command finished
*** No such file or directory - /tmp/20101005133505/REVISION
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/recipes/deploy/strategy/copy.rb:94:in `initialize'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/recipes/deploy/strategy/copy.rb:94:in `open'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/recipes/deploy/strategy/copy.rb:94:in `deploy!'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/recipes/deploy.rb:213:in `load'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:139:in `instance_eval'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:139:in `invoke_task_directly_without_callbacks'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/callbacks.rb:27:in `invoke_task_directly'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:89:in `execute_task'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/namespaces.rb:186:in `send'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/namespaces.rb:186:in `method_missing'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/namespaces.rb:104:in `update_code'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/recipes/deploy.rb:194:in `load'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:56:in `transaction'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/namespaces.rb:186:in `send'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/namespaces.rb:186:in `method_missing'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/recipes/deploy.rb:193:in `load'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:139:in `instance_eval'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:139:in `invoke_task_directly_without_callbacks'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/callbacks.rb:27:in `invoke_task_directly'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:89:in `execute_task'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/namespaces.rb:186:in `send'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/namespaces.rb:186:in `method_missing'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/namespaces.rb:104:in `update'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/recipes/deploy.rb:162:in `load'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:139:in `instance_eval'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:139:in `invoke_task_directly_without_callbacks'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/callbacks.rb:27:in `invoke_task_directly'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:89:in `execute_task'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/configuration/execution.rb:101:in `find_and_execute_task'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/cli/execute.rb:45:in `execute_requested_actions'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/cli/execute.rb:44:in `each'
*** /var/rails/peritor-webistrano-3411dad/vendor/gems/capistrano-2.5.9/lib/capistrano/cli/execute.rb:44:in `execute_requested_actions'
*** /var/rails/peritor-webistrano-3411dad/lib/webistrano/deployer.rb:72:in `execute!'
*** /var/rails/peritor-webistrano-3411dad/lib/webistrano/deployer.rb:62:in `catch'
*** /var/rails/peritor-webistrano-3411dad/lib/webistrano/deployer.rb:62:in `execute!'
*** /var/rails/peritor-webistrano-3411dad/lib/webistrano/deployer.rb:46:in `invoke_task!'
*** (eval):1
*** /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `eval'
*** /var/rails/peritor-webistrano-3411dad/vendor/rails/railties/lib/commands/runner.rb:48
*** /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
*** /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
*** script/runner:3
Any help would be most appreciated.
shared_dirparameter for the project in webistrano. For example:shared-app2. Also, add a custom param for theversion_dir. For example:releases-app2. – Roni Yaniv Apr 11 '11 at 10:49