Add support for CentOS 8

Ceph for CentOS 8 has been built by Storage SIG.

Change-Id: I0750d4d0bfbb019428402bd9f19dafd442a7c5de
This commit is contained in:
Alfredo Moralejo
2020-02-11 15:11:28 +01:00
parent 525e5a5bbf
commit 193919a6df

View File

@ -61,7 +61,11 @@ class ceph::params (
$pkg_radosgw = 'ceph-radosgw'
$user_radosgw = 'apache'
$pkg_fastcgi = 'mod_fastcgi'
$pkg_policycoreutils = 'policycoreutils-python'
if (Integer.new($::os['release']['major']) > 7) {
$pkg_policycoreutils = 'policycoreutils-python-utils'
} else {
$pkg_policycoreutils = 'policycoreutils-python'
}
}
default: {