我正在尝试在 docs.chef.io 展示的模板资源中使用“not_if”条件
template "/tmp/somefile" do
mode '0644'
source "somefile.erb"
not_if { node[:some_value] }
end
我是厨师新手,我不确定如何继续创建有效执行以下操作的东西:
if 'instance' (in node['project']['instance']) == nil
do NOT do anything for this template
我想使用 not_if 条件,但我不知道如何检查'instance' == nil。
我将不胜感激任何帮助。谢谢,