Drop validation for CentOS<=6 and Fedora <=14

... because both are quite old now.

Change-Id: If170d1c1468e9e668b4faaab0b94d2d7d2e1bb15
This commit is contained in:
Takashi Kajinami
2020-04-09 22:58:37 +09:00
parent 27ed29ad19
commit eb3447c2e4

View File

@@ -32,12 +32,6 @@ define openstacklib::db::postgresql (
$privileges = 'ALL',
){
if ((($::operatingsystem == 'RedHat' or $::operatingsystem == 'CentOS') and (versioncmp($::operatingsystemmajrelease, '6') <= 0))
or ($::operatingsystem == 'Fedora' and (versioncmp($::operatingsystemmajrelease, '14') <= 0))) {
warning("The system packages handling the postgresql infrastructure for OpenStack \
are out of date and should not be relied on for database migrations.")
}
postgresql::server::db { $dbname:
user => $user,
password => $password_hash,