1

そこで、cap deploy を実行して ec2 にデプロイしようとすると、次の問題が発生します。

 ** [ec2-54-200-24-60.us-west-2.compute.amazonaws.com :: out] * RVM has encountered a new or modified .rvmrc file in the current           *
 ** * directory, this is a shell script and therefore may contain any shell      *
 ** * commands.                                                                  *
 ** *                                                                            *
 ** * Examine the contents of this file carefully to be sure the contents are    *
 ** * safe before trusting it!                                                   *
 ** * Do you wish to trust '/var/www/highlandsfbart#/shared/cached-copy/.rvmrc'? *
 ** * Choose v[iew] below to view the contents                                   *
 ** [ec2-54-200-24-60.us-west-2.compute.amazonaws.com :: out] ******************************************************************************
 ** [ec2-54-200-24-60.us-west-2.compute.amazonaws.com :: out] y[es], n[o], v[iew], c[ancel]>

ただし、y と入力して Enter キーを押すと、ハングして何も起こりません。v と入力して入力するときも同じです。

(ローカル) プロジェクト フォルダー内の .rvmrc ファイルをそのまま変更しようとしましたが、これは何もしませんでした。

rvm_trust_rvmrcs_flag=1

また、このコードを deploy.rb に追加しようとしましたが、まだうまくいきません:

namespace :rvm do
  desc 'Trust rvmrc file'
  task :trust_rvmrc do
    run "rvm rvmrc trust #{current_release}"
  end
end

after "deploy:update_code", "rvm:trust_rvmrc"

どんな助けでも大歓迎です。

4

1 に答える 1

4

すべてのサーバーでユーザーとして実行する必要があります。

echo rvm_trust_rvmrcs_flag=1 | sudo tee -a /etc/rvmrc

またはルートとして:

echo rvm_trust_rvmrcs_flag=1 >> /etc/rvmrc
于 2013-10-07T03:25:16.900 に答える