gpt4 book ai didi

ruby - 如何使用 rvmsudo 运行 chef 命令(使用 rvm 安装 passenger)

转载 作者:太空宇宙 更新时间:2023-11-03 16:06:33 25 4
gpt4 key购买 nike

我将 Chef 与 Vagrant 结合使用,并希望使用 RVM 构建一个 Rails 堆栈。

这是到目前为止我的 Vagrantfile 配置的一个片段:

...
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = "cookbooks"

chef.add_recipe "apt"
chef.add_recipe "build-essential"
chef.add_recipe "ntp"
chef.add_recipe "openssl"
chef.add_recipe "apache2"
chef.add_recipe "mysql"
chef.add_recipe "mysql::server"
chef.add_recipe "redis"
chef.add_recipe "git"
chef.add_recipe "rvm::system"
chef.add_recipe "rvm::gem_package"
chef.add_recipe "passenger_apache2"

chef.json = {
:mysql => {
:server_root_password => 'root',
:bind_address => '127.0.0.1'
},
:redis => {
:daemonize => 'yes',
:port => '6379'
},
:rvm => {
:rubies => 'ruby-1.9.3-p194',
:global_gems => [
{:name => 'bundler'},
{:name => 'rake'},
{:name => 'passenger',
:version => '3.0.17'
}
]
},
:passenger => {
:version => '3.0.17'
}
}
end

启动 vagrant,配置工作直到它尝试安装 passenger,然后我得到这个错误:

...
ERROR: gem_package[passenger] (passenger_apache2::default line 48) has had an error
ERROR: gem_package[passenger] (/tmp/vagrant-chef-1/chef-solo-1/cookbooks/passenger_apache2/recipes/default.rb:48:in `from_file') had an error:
gem_package[passenger] (passenger_apache2::default line 48) had an error: NoMethodError: undefined method `join' for nil:NilClass
...

通过 sshing 进入 vagrant,我可以看到 RVM 和 gems 安装正常:

vagrant@lucid32:~$ rvm list

rvm rubies

=* ruby-1.9.3-p194 [ i686 ]

# => - current
# =* - current && default
# * - default

vagrant@lucid32:~$ gem list

*** LOCAL GEMS ***

bundler (1.2.1)
daemon_controller (1.0.0)
fastthread (1.0.7)
passenger (3.0.17)
rack (1.4.1)
rake (0.9.2.2)
rubygems-bundler (1.1.0)
rvm (1.11.3.5)

并且手动运行 rvmsudo passenger-install-apache2-module 工作正常

所以我很确定问题是 chef 在没有加载 rvm 的情况下运行它的命令

这里是 cookbooks/passenger_apache2/recipes/default.rb 的命令:第 48-55 行

...
gem_package "passenger" do
version node[:passenger][:version]
end

execute "passenger_module" do
command 'passenger-install-apache2-module --auto'
creates node[:passenger][:module_path]
end

我用于 RVM 和 passaenger_apache 的 Recipe 是:

我尝试用 rvmsudo passenger-install-apache2-module --auto 替换 passenger-install-apache2-module --auto 但没有成功...

有人知道如何让 rvm 和 rvmsudo 在 Chef 中工作吗?

最佳答案

我相信您认为 Chef 在没有加载 rvm 的情况下执行命令是正确的。也许你可以使用 rvm_shell来自 chef-rvm 的命令来安装 passenger。这样的事情可能会起作用:

rvm_shell "passenger_module" do
ruby_string "ruby-1.9.3-p194"
code "passenger-install-apache2-module --auto"
creates node[:passenger][:module_path]
end

关于ruby - 如何使用 rvmsudo 运行 chef 命令(使用 rvm 安装 passenger),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12550603/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com