9 lines
153 B
Ruby
9 lines
153 B
Ruby
case node['platform_family']
|
|
when "debian"
|
|
include_recipe "ceph::apt"
|
|
when "rhel", "suse"
|
|
include_recipe "ceph::rpm"
|
|
else
|
|
fail "not supported"
|
|
end
|