From b61c32f6f7a1b563638b190c836cd10afe7c70a1 Mon Sep 17 00:00:00 2001 From: "Lushaj, Valdrin" Date: Thu, 30 Nov 2023 12:20:34 +0100 Subject: [PATCH] Standardize gunicorn package references across RHEL versions --- manifests/params.pp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index 50937bb9..49bfdeac 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -28,9 +28,8 @@ $gunicorn_package_name = $facts['os']['family'] ? { 'RedHat' => $facts['os']['release']['major'] ? { - '9' => 'python3-gunicorn', - '8' => 'python3-gunicorn', - default => 'python-gunicorn', + '7' => 'python-gunicorn', + default => 'python3-gunicorn', }, default => 'gunicorn', }