Skip to content

Commit c527827

Browse files
mrpk1906markuman
andauthored
Dynamic user/password in .my.cnf (#89)
* Dynamic user/password in .my.cnf * python3-mysqldb: Correct package name * add changelogs * Update changelogs/fragments/89-dynamic-user-password-in-client-my-cnf-and-correct-package-name.yml Co-authored-by: Markus Bergholz <[email protected]>
1 parent 2d7082e commit c527827

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bugfixes:
2+
- role_proxysql - Dynamic user/password in .my.cnf (https://github.com/ansible-collections/community.proxysql/pull/89).
3+
- role_proxysql - Correct package name (python3-mysqldb instead of python-mysqldb) (https://github.com/ansible-collections/community.proxysql/pull/89).
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### {{ ansible_managed }}
22
[client]
3-
user=admin
4-
password=admin
3+
user={{ proxysql_admin_user }}
4+
password={{ proxysql_admin_password }}
55
host={{ proxysql_admin_bind_address }}
66
port={{ proxysql_admin_port }}

roles/proxysql/vars/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ proxysql_release: "{{ proxysql_download_src }}/v{{ proxysql_version }}/proxysql_
1919

2020
proxysql_additional_packages:
2121
- percona-server-client-{{ proxysql_mysql_client_version }}
22-
- python-mysqldb
22+
- python3-mysqldb
2323

2424
proxysql_python_packages:
2525
- pymysql

0 commit comments

Comments
 (0)