You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
371 B
11 lines
371 B
---
|
|
|
|
- name: Configure MariaDB repository
|
|
yum_repository:
|
|
name: mariadb
|
|
description: MariaDB
|
|
baseurl: http://yum.mariadb.org/{{ mysql_mariadb_version }}/centos$releasever-amd64
|
|
gpgcheck: True
|
|
gpgkey: https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
|
|
state: "{{ (mysql_mariadb_version != 'default') | ternary('present','absent') }}"
|
|
tags: repo,mysql
|
|
|