From 26e77c60807f52836fc6a3e0090092dc800143a7 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 23 Jan 2023 14:07:54 +0900 Subject: [PATCH] Ubuntu: Drop logic for old versions (<16.04) ... because we no longer support such old versions. Change-Id: Ia852e2b4a0f4434e82cab8db8168394f66563142 --- manifests/tempest.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/tempest.pp b/manifests/tempest.pp index ab92015c3..9c668749b 100644 --- a/manifests/tempest.pp +++ b/manifests/tempest.pp @@ -255,7 +255,7 @@ class openstack_integration::tempest ( # Install missed dependency for neutron tests # https://github.com/openstack/neutron/blob/master/test-requirements.txt#L20 - if ($::operatingsystem == 'Ubuntu') and (versioncmp($::operatingsystemmajrelease, '16') >= 0) { + if $::operatingsystem == 'Ubuntu' { package { ['python3-ddt', 'python3-oslotest', 'python3-gabbi']: ensure => present }