0

我为我的简单自定义配方创建了一个 GitHub 存储库:

my-cookbook/
|- recipes/
   |- appsetup.rb

我已将存储库添加到自定义厨师食谱中https://github.com/my-github-user/my-github-repo.git

我已添加my-cookbook::appsetup到设置“周期”。

我知道它已被执行,因为如果我弄乱了语法,它将无法加载。

这是我的 appsetup.rb:

node[:deploy].each do |app_name, deploy|
  script "install_composer" do
    interpreter "bash"
    user "root"
    cwd "#{deploy[:deploy_to]}/current"
    code "curl -sS https://getcomposer.org/installer | php && php composer.phar install --no-dev"
  end
end

当我使用 ubuntu 用户通过 SSH 登录到实例时,没有安装 composer。

我也尝试了以下无济于事(安装nodejs):

node[:deploy].each do |app_name, deploy|
  execute "installing node" do
    command "add-apt-repository --yes ppa:chris-lea/node.js && apt-get update && sudo apt-get install python-software-properties python g++ make nodejs"
  end
end

没有安装节点,并且日志中没有错误。日志中对食谱的唯一引用只是说:

[2014-03-31T13:26:04+00:00] INFO: OpsWorks Custom Run List: ["opsworks_initial_setup", "ssh_host_keys", "ssh_users", "mysql::client", "dependencies", "ebs", "opsworks_ganglia::client", "opsworks_stack_state_sync", "mod_php5_apache2", "my-cookbook::appsetup", "deploy::default", "deploy::php", "test_suite", "opsworks_cleanup"]
...
2014-03-31T13:26:04+00:00] INFO: New Run List expands to ["opsworks_initial_setup", "ssh_host_keys", "ssh_users", "mysql::client", "dependencies", "ebs", "opsworks_ganglia::client", "opsworks_stack_state_sync", "mod_php5_apache2", "my-cookbook::appsetup", "deploy::default", "deploy::php", "test_suite", "opsworks_cleanup"]
...
[2014-03-31T13:26:05+00:00] DEBUG: Loading Recipe my-cookbook::appsetup via include_recipe
[2014-03-31T13:26:05+00:00] DEBUG: Found recipe appsetup in cookbook my-cookbook

我在某处错过了一些关键步骤吗?配方被清楚地识别和加载,但似乎没有被执行。

(以下为虚构名称:my-github-user、my-github-repo、my-cookbook)

4

4 回答 4

3

I know you've abandoned the cookbook but I'm almost 100% sure it's because you don't have a metadata.rb file in the root of your cookbook.

于 2014-09-24T15:04:33.700 回答
2

您的食谱名称不应包含破折号。我有同样的问题,用'_'代替它为我解决了。

于 2014-07-30T08:19:40.770 回答
0

如果这些命令静默失败,则可能是您对 && 的使用掩盖了失败。

至于 add-apt-repository,这是一个交互式命令。尝试使用“--yes”选项默认回答“是”,使其不再具有交互性。

于 2014-03-31T18:12:25.927 回答
0

如果您没有成功执行命令,您将无法在当前目录中找到文件。检查最后一个发布文件夹,看看它是否已经放在那里。

通过将 CWD 更改为:/tmp 来检查您是否获得了正确的目录等设置可能是谨慎的

于 2014-04-01T00:51:46.300 回答