You can use return
to skip evaluation of the rest of a recipe, e.g.:
return if node['httpd'] != 'nginx' # ...
У меня есть такая поваренная книга.
if node['httpd'] == "nginx" package "nginx" do action :install end # a lot more stuff end
Но я не хочу охватывать все настройки в if
заявлении. Есть ли способ написать так в шеф-повара?
next if node['httpd'] != "nginx" package "nginx" do action :install end # a lot more stuff
Если node['httpd']
нет "nginx"
, я хочу перейти к следующей кулинарной книге.
You can use return
to skip evaluation of the rest of a recipe, e.g.:
return if node['httpd'] != 'nginx' # ...