cookbook-ceph/recipes/repo.rb

11 lines
172 B
Ruby

# encoding: UTF-8
case node['platform_family']
when 'debian'
include_recipe 'ceph::apt'
when 'rhel', 'suse'
include_recipe 'ceph::rpm'
else
fail 'not supported'
end