Mirror HanXHX/ansible-mysql dari github.
Go to file
Emilien Mantel 16b105786b Replication OK (transfert from another git repo) 2015-08-11 10:23:53 +02:00
defaults Replication OK (transfert from another git repo) 2015-08-11 10:23:53 +02:00
handlers Default MySQL works on jessie 2015-07-12 12:47:44 +02:00
meta Add meta/main.yml 2015-07-16 11:01:29 +02:00
tasks Replication OK (transfert from another git repo) 2015-08-11 10:23:53 +02:00
templates Replication OK (transfert from another git repo) 2015-08-11 10:23:53 +02:00
tests Replication OK (transfert from another git repo) 2015-08-11 10:23:53 +02:00
vars first commit 2015-07-12 10:42:46 +02:00
.gitignore Default MySQL works on jessie 2015-07-12 12:47:44 +02:00
LICENSE Initial commit 2015-07-12 00:47:54 +02:00
README.md New configuration method 2015-08-10 23:45:01 +02:00
Vagrantfile Replication OK (transfert from another git repo) 2015-08-11 10:23:53 +02:00

README.md

MySQL vendors for Debian Ansible role

Install and configure MySQL or MariaDB or Percona Server. Create users and databases.

IMPORTANT: due to this bug, MariaDB don't work on Debian Jessie.

Requirements

None.

Role Variables

  • mysql_origin: origin of the package ("default" or "upstream")
  • mysql_vendor: "mysql", "mariadb" or "percona"

Configuration

  • mysql_root_password: root password (should be protected with vault)

If you need a feature you can't configure, you can use this list. These config will go to /etc/mysql/conf.d/01-extra.

  • mysql_extra_config: key/value hash see [defaults/main.yml](default vars file)

Databases

  • mysql_databases: list...

Users

Example:

mysql_users:
  - name: 'kiki'
    password: '123'
    priv: hihi.*:ALL
    host: '%'

Check "priv" syntax in [http://docs.ansible.com/mysql_user_module.html](mysql_user module documentation)

Packaging

Dependencies

None.

Example Playbook

- hosts: servers
  roles:
     - { role: HanXHX.mysql, mysql_origin: 'upstream', mysql_vendor: 'mariadb' }

License

GPLv2

Author Information