Replies: 1 comment 2 replies
-
|
Hi @subinznz! I fixed the logic for the AppStream module here: #1076 |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
if i have install_postgresql_repo set to false ,
can we fallback to use the built in appstream module
and enable the following instead of disabling ?
name: PostgreSQL | check if appstream module is enabled
ansible.builtin.command: "dnf -y -C module list postgresql"
register: postgresql_module_result
changed_when: false
name: PostgreSQL | disable appstream module
ansible.builtin.command: "dnf -y -C module disable postgresql"
when: "'[x] ' not in postgresql_module_result.stdout"
when:
installation_method == "packages"
ansible_os_family == "RedHat"
ansible_distribution_major_version >= '8'
ignore_errors: true
tags: install_postgres
Beta Was this translation helpful? Give feedback.
All reactions