
- Recipe is now ceph::repo - For EL, add EPEL repository for dependencies by default. Deactivable by using el_add_epel: false under ceph: {} in the chef environment. - Handle package names difference between EL/FC/SuSE and Debian. Signed-off-by: Alexandre Marangone <alexandre.marangone@inktank.com>
9 lines
154 B
Ruby
9 lines
154 B
Ruby
case node['platform_family']
|
|
when "debian"
|
|
include_recipe "ceph::apt"
|
|
when "rhel", "suse"
|
|
include_recipe "ceph::rpm"
|
|
else
|
|
raise "not supported"
|
|
end
|