Remove logic for old Ubuntu version

14.04 is quite old and is no longer supported.

Change-Id: Ie61cedbe06d6990e18209d7cdff0e13aa7ada293
This commit is contained in:
Takashi Kajinami
2022-05-07 16:31:38 +09:00
parent afc28df75d
commit 8d8b6cc369

View File

@@ -479,8 +479,7 @@ class keystone(
# openstacklib policy_rcd only affects debian based systems.
Policy_rcd <| title == 'keystone' |> -> Package['keystone']
Policy_rcd['apache2'] -> Package['httpd']
# we don't have keystone service anymore starting from Newton
if ($::operatingsystem == 'Ubuntu') and (versioncmp($::operatingsystemmajrelease, '16') >= 0) {
if ($::operatingsystem == 'Ubuntu') {
$policy_services = 'apache2'
} else {
$policy_services = ['keystone', 'apache2']