From 8bda967899397c1e1a3273500e126db27e4a7085 Mon Sep 17 00:00:00 2001 From: Bernd Finger Date: Thu, 23 Jan 2025 14:52:44 +0100 Subject: [PATCH] sap_general_preconfigure: No longer install locale packages in RHEL 7 I am not aware of any issues related to missing English locales on RHEL 7, so we can safely assume that a RHEL 7 system will have all necessary English locale packages installed as part of installing the mandatory software environment group. Signed-off-by: Bernd Finger --- roles/sap_general_preconfigure/vars/RedHat_7.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/roles/sap_general_preconfigure/vars/RedHat_7.yml b/roles/sap_general_preconfigure/vars/RedHat_7.yml index 8d59e235..5478a445 100644 --- a/roles/sap_general_preconfigure/vars/RedHat_7.yml +++ b/roles/sap_general_preconfigure/vars/RedHat_7.yml @@ -94,9 +94,6 @@ __sap_general_preconfigure_packages_x86_64: - compat-sap-c++-7 - compat-sap-c++-9 - compat-sap-c++-10 -# English locale packages are required as per SAP note 2369910: - - langpacks-en - - glibc-langpack-en __sap_general_preconfigure_packages_ppc64le: - uuidd @@ -107,26 +104,17 @@ __sap_general_preconfigure_packages_ppc64le: - compat-sap-c++-7 - compat-sap-c++-9 - compat-sap-c++-10 -# English locale packages are required as per SAP note 2369910: - - langpacks-en - - glibc-langpack-en __sap_general_preconfigure_packages_ppc64: - uuidd - tcsh - psmisc - compat-sap-c++-5 -# English locale packages are required as per SAP note 2369910: - - langpacks-en - - glibc-langpack-en __sap_general_preconfigure_packages_s390x: - uuidd - tcsh - psmisc -# English locale packages are required as per SAP note 2369910: - - langpacks-en - - glibc-langpack-en __sap_general_preconfigure_packages: "{{ lookup('vars', '__sap_general_preconfigure_packages_' + ansible_architecture) }}"