Capistrano does not obey "in release_path"

I have this task:

namespace :custom do
  desc "create a symlink to db config already on the server"
  task :symlink_db_config do
    on roles(:web) do
      within release_path do
        execute "pwd"
      end

      within release_path do
        execute "ln -nfs /home/blog/config/database.yml ./database.yml"
      end
    end
  end
end

      

For some reason, the command is pwd

preceded cd

by a release path, but the command is ln

missing. Why is this?

Here's the output showing above:

** Invoke custom:symlink_db_config (first_time)
** Execute custom:symlink_db_config
DEBUG[352cc4bb] Running /usr/bin/env if test ! -d /home/blog/staging/releases/20141010050707; then echo "Directory does not exist '/home/blog/staging/releases/20141010050707'" 1>&2; false; fi on 172.245.32.193
DEBUG[352cc4bb] Command: if test ! -d /home/blog/staging/releases/20141010050707; then echo "Directory does not exist '/home/blog/staging/releases/20141010050707'" 1>&2; false; fi
DEBUG[352cc4bb] Finished in 0.199 seconds with exit status 0 (successful).

// Here the `pwd`; note the proper `cd` that occurs first:

INFO[67a83a04] Running /usr/bin/env pwd on 172.245.32.193
DEBUG[67a83a04] Command: cd /home/blog/staging/releases/20141010050707 && /usr/bin/env pwd
DEBUG[67a83a04]     /home/blog/staging/releases/20141010050707
INFO[67a83a04] Finished in 0.268 seconds with exit status 0 (successful).
DEBUG[f46f64b3] Running /usr/bin/env if test ! -d /home/blog/staging/releases/20141010050707; then echo "Directory does not exist '/home/blog/staging/releases/20141010050707'" 1>&2; false; fi on 172.245.32.193
DEBUG[f46f64b3] Command: if test ! -d /home/blog/staging/releases/20141010050707; then echo "Directory does not exist '/home/blog/staging/releases/20141010050707'" 1>&2; false; fi
DEBUG[f46f64b3] Finished in 0.243 seconds with exit status 0 (successful).

//And now here the `ln`... but where is the `cd`?  I said `within release_path`, didn't I?

INFO[afdbd89c] Running /usr/bin/env ln -nfs /home/blog/config/database.yml ./database.yml on 172.245.32.193
DEBUG[afdbd89c] Command: ln -nfs /home/blog/config/database.yml ./database.yml
INFO[afdbd89c] Finished in 0.219 seconds with exit status 0 (successful).

      

So mine ln

is failing because it is not in the correct directory. Why was there no capistrano in the release directory cd

as I said?

(Capistrano 3.2.1, by the way)

+3


source to share


1 answer


There is some useful information here in the other answer, but in a nutshell, it seems like the problem occurs when there are spaces in the command.

I followed the brick suggestion like



within release_path do
  execute *%w[ ln -nfs /home/blog/config/database.yml ./database.yml ]
end

      

+7


source







All Articles