【发布时间】:2016-04-19 02:08:32
【问题描述】:
这是我的代码:
if node['app']['source']
src = "#{node['app']['source']}\\#{node['app']['file_name']}"
else
src = "second_source"
end
我想在我的语句末尾添加一个 log.warn,以防任何来源无效, 类似:
if node['app']['source']
src = "#{node['app']['source']}\\#{node['app']['file_name']}"
else
src = "second_source"
whatever
Chef::Log.warn "This path #{src} is not supported, check attributes again"
return
end
如果有人有任何想法,我会很高兴, 谢谢...
【问题讨论】:
-
签出this
标签: ruby chef-infra cookbook recipe