package
和include_recipe
之间的区别是什么?
例如,
package 'git'
include_recipe 'git'
什么时候我会包含一个配方而不是声明一个包依赖?
答案 0 :(得分:1)
package 'git'
使用系统打包系统(git
,apt-get install git
等)安装名为yum install git
的软件包。
include_recipe 'git'
执行git
食谱(git/recipes/default.rb
)中的默认食谱。