Mirror HanXHX/ansible-mysql dari github.
Go to file
Emilien Mantel f27a78b826 Delete useless vars files 2015-08-21 10:17:04 +02:00
defaults Better master and support MariaDB GTID 2015-08-11 11:26:56 +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 Restart when config changed 2015-08-21 10:14:23 +02:00
templates pass is deprecated in my.cnf 2015-08-21 00:59:18 +02:00
tests Replication OK (transfert from another git repo) 2015-08-11 10:23:53 +02:00
vars Delete useless vars files 2015-08-21 10:17:04 +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 Change vagrant box for Jessie (fix mariadb bug) 2015-08-17 17:34:23 +02:00
Vagrantfile Change vagrant box for Jessie (fix mariadb bug) 2015-08-17 17:34:23 +02:00

README.md

MySQL vendors for Debian Ansible role

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

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