From 2d83db70366654484aed1f84a920e982964fbf9c Mon Sep 17 00:00:00 2001 From: Adam Miller Date: Tue, 20 Nov 2018 11:49:21 -0600 Subject: [PATCH] update/enable postgresql integration test target for rhel8 beta Signed-off-by: Adam Miller --- test/integration/targets/postgresql/aliases | 1 - test/integration/targets/setup_postgresql_db/tasks/main.yml | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/test/integration/targets/postgresql/aliases b/test/integration/targets/postgresql/aliases index e4a29f3383e..710a9fb29e8 100644 --- a/test/integration/targets/postgresql/aliases +++ b/test/integration/targets/postgresql/aliases @@ -4,4 +4,3 @@ postgresql_db postgresql_privs postgresql_user skip/osx -skip/rhel8.0 diff --git a/test/integration/targets/setup_postgresql_db/tasks/main.yml b/test/integration/targets/setup_postgresql_db/tasks/main.yml index 2a08b7a9750..8e5bc051a97 100644 --- a/test/integration/targets/setup_postgresql_db/tasks/main.yml +++ b/test/integration/targets/setup_postgresql_db/tasks/main.yml @@ -96,6 +96,12 @@ # instLangs parameter). - block: + - name: Install langpacks (rhel8 beta) + yum: + name: glibc-all-langpacks + state: present + when: ansible_distribution_major_version|int >= 8 + - name: Check if locales need to be generated (RedHat) shell: "localedef --list-archive | grep -a -q '^{{ locale }}$'" register: locale_present