Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I try to deploy my rails app to Rackspace using Moonshine, I get the following error:

  * 2013-01-20 22:54:44 executing `app:symlinks:update'
  * 2013-01-20 22:54:44 executing `deploy:create_symlink'
    triggering before callbacks for `deploy:create_symlink'
  * 2013-01-20 22:54:44 executing `moonshine:apply'
  * executing "sudo -p 'sudo password: ' RAILS_ROOT=/srv/appname/releases/20130121065443 DEPLOY_STAGE= RAILS_ENV=production shadow_puppet  /srv/appname/releases/20130121065443/app/manifests/application_manifest.rb"
    servers: ["appname.com"]
    [appname.com] executing command
 ** [out :: appname.com] Uncaught exception: LoadError: cannot load such file -- /srv/appname/releases/20130121065443/app/manifests/application_manifest.rb
 ** [out :: appname.com] 
 ** [out :: appname.com] 
 ** [out :: appname.com] /usr/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
 ** [out :: appname.com] 
 ** [out :: appname.com] 
 ** [out :: appname.com] /usr/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
 ** [out :: appname.com] 
 ** [out :: appname.com] 
 ** [out :: appname.com] /usr/lib/ruby/gems/1.9.1/gems/shadow_puppet-0.6.2/bin/shadow_puppet:130:in `<top (required)>'
 ** [out :: appname.com] 
 ** [out :: appname.com] 
 ** [out :: appname.com] /usr/bin/shadow_puppet:19:in `load'
 ** [out :: appname.com] 
 ** [out :: appname.com] 
 ** [out :: appname.com] /usr/bin/shadow_puppet:19:in `<main>'
 ** [out :: appname.com] 
    command finished in 2569ms
*** [deploy:update_code] rolling back
  * executing "rm -rf /srv/appname/releases/20130121065443; true"
    servers: ["appname.com"]
    [appname.com] executing command
    command finished in 364ms
failed: "sh -c 'sudo -p '\\''sudo password: '\\'' RAILS_ROOT=/srv/appname/releases/20130121065443 DEPLOY_STAGE= RAILS_ENV=production shadow_puppet  /srv/appname/releases/20130121065443/app/manifests/application_manifest.rb'" on appname.com

How should I go about fixing this? If you don't know how to fix it, what are other gems that would help me deploy my app to Rackspace.

share|improve this question

1 Answer

up vote 0 down vote accepted

I found the issue. Capistrano was pulling the source from git and I forgot to push the new code. That means, application_manifest.rb didn't exist on the server. After pushing, it worked perfectly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.