我有食谱base
和食谱myapp
base有2个食谱 - my_java
和java_with_custom_stuff
java_with_custom_stuff
中的我想使用my_java
的食谱(同一本食谱)。
include_recipe 'my_java'
bash 'custom stuff' do
...
end
我在myapp
中的
include_recipe "base::java_with_custom_stuff"
然而却抱怨找不到my_java
有没有办法使用同一本食谱中的食谱?
答案 0 :(得分:9)
include_recipe
每次都使用第一部分作为食谱名称。所以你必须指定食谱 - 名称+食谱名称:
include_recipe '::my_java' # works still after you rename your cookbook
include_recipe 'base::my_java' # works only as long as your cookbook name is base