2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-25 16:08:23 +00:00

14 lines
443 B
YAML
Raw Normal View History

2017-08-28 14:50:50 +05:30
---
- name: Add repo file
template: src=mariadb_centos.repo.j2 dest=/etc/yum.repos.d/mariadb.repo owner=root group=root mode=0644
- name: Install MariaDB
yum: name={{ item }} enablerepo=mariadb state=present
with_items:
- MariaDB-server
2018-06-09 08:48:20 +00:00
- MariaDB-client
- name: Install MySQLdb Python package for secure installations.
yum: name=MySQL-python state=present
when: mysql_secure_installation and mysql_root_password is defined