8000 GitHub - Oefenweb/ansible-percona-client at v1.1.1
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Oefenweb/ansible-percona-client

Repository files navigation

percona-client

Build Status Ansible Galaxy

Set up a percona-server client in Debian-like systems.

Requirements

None

Variables

  • percona_client_version: [default: 5.5]: Version to install

  • percona_client_install: [default: []]: Additional packages to install

  • percona_client_my_cnf_files: [default: []]: .my.cnf files to configure

  • percona_client_my_cnf_files.{n}.dest: [optional, default: ~owner/.my.cnf']: The remote path of the file to copy

  • percona_client_my_cnf_files.{n}.owner: [required]: The name of the user that should own the file

  • percona_client_my_cnf_files.{n}.group: [optional, default: owner]: The name of the group that should own the file

  • percona_client_my_cnf_files.{n}.mode: [optional, default: 0600]: The mode of the file

  • percona_client_my_cnf_files.{n}.login_host: [optional, default: localhost]: The host running the server

  • percona_client_my_cnf_files.{n}.login_port: [optional, default: 3306]: The port of the server

  • percona_client_my_cnf_files.{n}.login_user: [optional, default: owner]: The username used to authenticate with

  • percona_client_my_cnf_files.{n}.login_password: [required]: The password used to authenticate with

  • percona_client_my_cnf_files.{n}.ssl: [optional]: Whether or not to use SSL when connection

Dependencies

None

Recommended

  • percona-server (see)

Example(s)

Simple
---
- hosts: all
  roles:
    - percona-client
With .my.cnf file(s)
---
- hosts: all
  roles:
    - percona-client
  vars:
    percona_client_my_cnf_files:
      - dest: '~root/.my.cnf'
        owner: root
        group: root
        mode: '0600'
        login_host: localhost
        login_port: 3306
        login_user: root
        login_password: 'pw4Root'

      - owner: vagrant
        login_password: 'pw4Vagrant'

License

MIT

Author Information

Mischa ter Smitten

Feedback, bug-reports, requests, ...

Are welcome!

About

Ansible role to set up percona-server client in Debian-like systems

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  
0