Skip to content

Commit

Permalink
Allow to upgrade packages when allowed by mariadb_upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
elcomtik committed Oct 3, 2024
1 parent 997807e commit 814f754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
- name: redhat | installing mariadb mysql
ansible.builtin.yum:
name: "{{ (galera_sst_method == 'mariabackup') | ternary( mariadb_packages | union( mariabackup_packages ), mariadb_packages ) }}"
state: "present"
state: "{{ mariadb_upgrade | ternary( 'latest', 'present' ) }}"
update_cache: true
become: true

Expand Down

0 comments on commit 814f754

Please sign in to comment.