0

对于我目前的问题,我正在使用nginx食谱。我想做的是从源代码安装它nginx::source/opt/nginx/<version>/使用/opt/nginx-<version>/.

这是我的./attributes/default.rb

node.override['nginx']['source']['prefix'] = "/opt/nginx/#{node['nginx']['source']['version']}"
#also tested
override['nginx']['source']['prefix'] = "/opt/nginx/#{node['nginx']['source']['version']}"
#and also
default['nginx']['source']['prefix'] = "/opt/nginx/#{node['nginx']['source']['version']}"

我不明白什么?

谢谢


另一件事是: - 我如何像上面一样为它添加前缀并创建一个符号链接/opt/nginx/current(即使在更新之后也要这样做)?

4

1 回答 1

1

所以,这是食谱中的一个缺点。许多变量是基于该属性的值构建的,如果您没有首先设置覆盖值,那么食谱中的值仍然会为派生属性赢得胜利。

如果您在节点或环境上设置覆盖nginx['source']['prefix']应该可以工作,但这并不理想。或者,也覆盖派生值。

https://github.com/miketheman/nginx/blob/master/attributes/source.rb

default['nginx']['source']['sbin_path'] = "#{node['nginx']['source']['prefix']}/sbin/nginx"
default['nginx']['source']['default_configure_flags'] = %W(
  --prefix=#{node['nginx']['source']['prefix']}  # <= this one needs overridden
  --conf-path=#{node['nginx']['dir']}/nginx.conf
  --sbin-path=#{node['nginx']['source']['sbin_path']}
)

可能还有其他人,但这是我所知道的两个,而且很突出。

于 2015-04-13T23:12:23.530 回答