mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-19 08:51:26 -07:00
Compare commits
26 commits
Author | SHA1 | Date | |
---|---|---|---|
|
3bb7b00497 | ||
|
393023eb07 | ||
|
256817ca32 | ||
|
a2a4a1ff61 | ||
|
b730cd6675 | ||
|
2a57a4d659 | ||
|
278337d34f | ||
|
d5a1e3639a | ||
|
bfcf89073a | ||
|
15ee80b57c | ||
|
59d411ac82 | ||
|
b0de252ce2 | ||
|
96a255c00a | ||
|
f46b84e670 | ||
|
9386045797 | ||
|
ace830ef56 | ||
|
e5919428f1 | ||
|
dbcc7e7e60 | ||
|
f49206d3b3 | ||
|
64b06aa543 | ||
|
9c17158802 | ||
|
d200481305 | ||
|
b3a83aa0a3 | ||
|
fe8f3662eb | ||
|
59cbe5ffe3 | ||
|
d517d658a1 |
40 changed files with 1212 additions and 289 deletions
5
.github/patchback.yml
vendored
Normal file
5
.github/patchback.yml
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
backport_branch_prefix: patchback/backports/
|
||||||
|
backport_label_prefix: backport-
|
||||||
|
target_branch_prefix: stable-
|
||||||
|
...
|
20
.github/workflows/ansible-test-plugins.yml
vendored
20
.github/workflows/ansible-test-plugins.yml
vendored
|
@ -25,9 +25,9 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
ansible:
|
ansible:
|
||||||
- stable-2.9
|
|
||||||
- stable-2.10
|
|
||||||
- stable-2.11
|
- stable-2.11
|
||||||
|
- stable-2.12
|
||||||
|
- stable-2.13
|
||||||
- devel
|
- devel
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
@ -58,9 +58,9 @@ jobs:
|
||||||
- 5.7.31
|
- 5.7.31
|
||||||
- 8.0.22
|
- 8.0.22
|
||||||
ansible:
|
ansible:
|
||||||
- stable-2.9
|
|
||||||
- stable-2.10
|
|
||||||
- stable-2.11
|
- stable-2.11
|
||||||
|
- stable-2.12
|
||||||
|
- stable-2.13
|
||||||
- devel
|
- devel
|
||||||
python:
|
python:
|
||||||
- 3.6
|
- 3.6
|
||||||
|
@ -71,6 +71,14 @@ jobs:
|
||||||
exclude:
|
exclude:
|
||||||
- mysql: 8.0.22
|
- mysql: 8.0.22
|
||||||
connector: pymysql==0.7.10
|
connector: pymysql==0.7.10
|
||||||
|
- python: 3.8
|
||||||
|
ansible: stable-2.11
|
||||||
|
- python: 3.6
|
||||||
|
ansible: stable-2.12
|
||||||
|
- python: 3.6
|
||||||
|
ansible: stable-2.13
|
||||||
|
- python: 3.6
|
||||||
|
ansible: devel
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Check out code
|
- name: Check out code
|
||||||
|
@ -113,9 +121,9 @@ jobs:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
ansible:
|
ansible:
|
||||||
- stable-2.9
|
|
||||||
- stable-2.10
|
|
||||||
- stable-2.11
|
- stable-2.11
|
||||||
|
- stable-2.12
|
||||||
|
- stable-2.13
|
||||||
- devel
|
- devel
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
22
.github/workflows/ansible-test-roles.yml
vendored
22
.github/workflows/ansible-test-roles.yml
vendored
|
@ -23,14 +23,22 @@ jobs:
|
||||||
mysql:
|
mysql:
|
||||||
- 2.0.12
|
- 2.0.12
|
||||||
ansible:
|
ansible:
|
||||||
- stable-2.9
|
- stable-2.11
|
||||||
### it looks like there's errors for 2.10+ with ansible-lint (https://github.com/ansible/ansible-lint/pull/878)
|
- stable-2.12
|
||||||
### and molecule (_maybe_ relating to https://github.com/ansible-community/molecule/pull/2547)
|
- stable-2.13
|
||||||
# - stable-2.10
|
- devel
|
||||||
# - devel
|
|
||||||
python:
|
python:
|
||||||
- 2.7
|
- 3.6
|
||||||
- 3.8
|
- 3.8
|
||||||
|
exclude:
|
||||||
|
- python: 3.8
|
||||||
|
ansible: stable-2.11
|
||||||
|
- python: 3.6
|
||||||
|
ansible: stable-2.12
|
||||||
|
- python: 3.6
|
||||||
|
ansible: stable-2.13
|
||||||
|
- python: 3.6
|
||||||
|
ansible: devel
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
@ -44,7 +52,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python }}
|
python-version: ${{ matrix.python }}
|
||||||
|
|
||||||
- name: Install ansible-base (${{ matrix.ansible }})
|
- name: Install ansible-core (${{ matrix.ansible }})
|
||||||
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
|
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
|
||||||
|
|
||||||
- name: Install molecule and related dependencies
|
- name: Install molecule and related dependencies
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
||||||
/tests/output/
|
/tests/output/
|
||||||
/changelogs/.plugin-cache.yaml
|
/changelogs/.plugin-cache.yaml
|
||||||
|
*.swp
|
||||||
|
|
||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
|
|
@ -5,6 +5,116 @@ Community MySQL Collection Release Notes
|
||||||
.. contents:: Topics
|
.. contents:: Topics
|
||||||
|
|
||||||
|
|
||||||
|
v1.4.5
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
This is the patch release of the ``community.mysql`` collection.
|
||||||
|
This changelog contains all changes to the modules in this collection that
|
||||||
|
have been added after the release of ``community.mysql`` 1.4.4.
|
||||||
|
|
||||||
|
Major Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- The community.mysql collection no longer supports ``Ansible 2.9`` and ``ansible-base 2.10``. While we take no active measures to prevent usage and there are no plans to introduce incompatible code to the modules, we will stop testing against ``Ansible 2.9`` and ``ansible-base 2.10``. Both will very soon be End of Life and if you are still using them, you should consider upgrading to the ``latest Ansible / ansible-core 2.11 or later`` as soon as possible (https://github.com/ansible-collections/community.mysql/pull/343).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- mysql_user - fix missing dynamic privileges after revoke and grant privileges to user (https://github.com/ansible-collections/community.mysql/issues/120).
|
||||||
|
- mysql_user - fix parsing privs when a user has roles assigned (https://github.com/ansible-collections/community.mysql/issues/231).
|
||||||
|
- mysql_user - fix the possibility for a race condition that breaks certain (circular) replication configurations when ``DROP USER`` is executed on multiple nodes in the replica set. Adding ``IF EXISTS`` avoids the need to use ``sql_log_bin: no`` making the statement always replication safe (https://github.com/ansible-collections/community.mysql/pull/287).
|
||||||
|
|
||||||
|
v1.4.4
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
This is the patch release of the ``community.mysql`` collection.
|
||||||
|
This changelog contains all changes to the modules in this collection that
|
||||||
|
have been added after the release of ``community.mysql`` 1.4.3.
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Collection core functions - use vendored version of ``distutils.version`` instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.mysql/pull/269).
|
||||||
|
|
||||||
|
v1.4.3
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
This is the patch release of the ``community.mysql`` collection.
|
||||||
|
This changelog contains all changes to the modules in this collection that
|
||||||
|
have been added after the release of ``community.mysql`` 1.4.2.
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- mysql_info - fix TypeError failure when there are databases that do not contain tables (https://github.com/ansible-collections/community.mysql/issues/204).
|
||||||
|
|
||||||
|
v1.4.2
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
This is the patch release of the ``community.mysql`` collection.
|
||||||
|
This changelog contains all changes to the modules in this collection that
|
||||||
|
have been added after the release of ``community.mysql`` 1.4.1.
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- mysql_query - correctly reflect changed status in replace statements (https://github.com/ansible-collections/community.mysql/pull/193).
|
||||||
|
|
||||||
|
v1.4.1
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
This is the patch release of the ``community.mysql`` collection.
|
||||||
|
This changelog contains all changes to the modules in this collection
|
||||||
|
that have been added after the release of ``community.mysql`` 1.4.0.
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- mysql - revert changes of connector arguments made in pull request 116 causing the invalid keyword argument error (https://github.com/ansible-collections/community.mysql/pull/116).
|
||||||
|
|
||||||
|
v1.4.0
|
||||||
|
======
|
||||||
|
|
||||||
|
Release Summary
|
||||||
|
---------------
|
||||||
|
|
||||||
|
This is the minor release of the ``community.mysql`` collection.
|
||||||
|
This changelog contains all changes to the modules in this collection
|
||||||
|
that have been added after the release of ``community.mysql`` 1.3.0.'
|
||||||
|
|
||||||
|
Major Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- mysql_user - the ``REQUIRESSL`` is an alias for the ``ssl`` key in the ``tls_requires`` option in ``community.mysql`` 2.0.0 and support will be dropped altogether in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/issues/121).
|
||||||
|
|
||||||
|
Minor Changes
|
||||||
|
-------------
|
||||||
|
|
||||||
|
- mysql module utils - change deprecated connection parameters ``passwd`` and ``db`` to ``password`` and ``database`` (https://github.com/ansible-collections/community.mysql/pull/116).
|
||||||
|
- mysql_collection - introduce codebabse split to handle divergences between MySQL and MariaDB (https://github.com/ansible-collections/community.mysql/pull/103).
|
||||||
|
- mysql_info - add `version.full` and `version.suffix` return values (https://github.com/ansible-collections/community.mysql/issues/114).
|
||||||
|
- mysql_user - deprecate the ``REQUIRESSL`` privilege (https://github.com/ansible-collections/community.mysql/issues/101).
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- mysql_user - add support for ``REPLICA MONITOR`` privilege (https://github.com/ansible-collections/community.mysql/issues/105).
|
||||||
|
|
||||||
v1.3.0
|
v1.3.0
|
||||||
======
|
======
|
||||||
|
|
199
CONTRIBUTING.md
199
CONTRIBUTING.md
|
@ -1,200 +1,3 @@
|
||||||
# Contributing
|
# Contributing
|
||||||
|
|
||||||
We follow [Ansible Code of Conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html) in all our contributions and interactions within this repository.
|
Refer to the [Ansible Contributing guidelines](https://github.com/ansible/community-docs/blob/main/contributing.rst) to learn how to contribute to this collection.
|
||||||
|
|
||||||
If you are a committer, also refer to the [Ansible committer guidelines](https://docs.ansible.com/ansible/devel/community/committer_guidelines.html).
|
|
||||||
|
|
||||||
## Issue tracker
|
|
||||||
|
|
||||||
Whether you are looking for an opportunity to contribute or you found a bug and already know how to solve it, please go to the [issue tracker](https://github.com/ansible-collections/community.mysql/issues).
|
|
||||||
There you can find feature ideas to implement, reports about bugs to solve, or submit an issue to discuss your idea before implementing it which can help choose a right direction at the beginning of your work and potentially save a lot of time and effort.
|
|
||||||
Also somebody may already have started discussing or working on implementing the same or a similar idea,
|
|
||||||
so you can cooperate to create a better solution together.
|
|
||||||
|
|
||||||
## Open pull requests
|
|
||||||
|
|
||||||
Look through currently [open pull requests](https://github.com/ansible-collections/community.mysql/pulls).
|
|
||||||
You can help by reviewing them. Reviews help move pull requests to merge state. Some good pull requests cannot be merged only due to a lack of reviews. And it is always worth saying that good reviews are often more valuable than pull requests themselves. For more information how to provide a good review, refer to the [review checklist](REVIEW_CHECKLIST.md).
|
|
||||||
|
|
||||||
Also, consider taking up a valuable, reviewed, but abandoned pull request which you could politely ask the original authors to complete yourself.
|
|
||||||
|
|
||||||
## Discussions
|
|
||||||
|
|
||||||
For open questions, broad suggestions, and other comments that will not typically fit in the scope of an issue or pull request, [discussions](https://github.com/ansible-collections/community.mysql/discussions) are available. That section provides a place to have a more open and informal conversation about any and all things related to this collection, included but not limited to future development plans, functionality explanations and feature proposals that are not yet fleshed out enough for an issue of their own.
|
|
||||||
|
|
||||||
## Looking for an idea to implement
|
|
||||||
|
|
||||||
First, see the paragraphs above.
|
|
||||||
|
|
||||||
If you came up with a new feature, it is always worth creating an issue
|
|
||||||
before starting to write code to discuss the idea with the community first.
|
|
||||||
If you are going to implement the feature yourself, say it in the issue explicitly to avoid working in parallel with somebody else.
|
|
||||||
|
|
||||||
## Step-by-step guide how to get into development quickly
|
|
||||||
|
|
||||||
We assume that you use Linux as a work environment (you can use a virtual machine as well) and have `git` installed.
|
|
||||||
|
|
||||||
1. If possible, make sure that you have installed and started `docker`. While you can also run tests without docker, this makes it a lot easier since you do not have to install the precise requirements, and tests are running properly isolated and in the exact same environments as in CI. You often can also use `podman` with the `docker` executable shim, so if you have that you probably do not need to install `docker`.
|
|
||||||
|
|
||||||
2. Clone the [ansible-core](https://github.com/ansible/ansible) repository:
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/ansible/ansible.git
|
|
||||||
```
|
|
||||||
|
|
||||||
Instead of installing ansible-core from source, you can also work with an already existing installation of Ansible, ansible-base or ansible-core. Simply skip steps 2 and 3 in that case.
|
|
||||||
|
|
||||||
3. Go to the cloned repository and prepare the environment:
|
|
||||||
```bash
|
|
||||||
cd ansible && source hacking/env-setup
|
|
||||||
pip install -r requirements.txt
|
|
||||||
cd ~
|
|
||||||
```
|
|
||||||
4. Create the following directories in your home directory:
|
|
||||||
```bash
|
|
||||||
mkdir -p ~/ansible_collections/community/mysql
|
|
||||||
```
|
|
||||||
|
|
||||||
5. Fork the `community.mysql` repository through the GitHub web interface.
|
|
||||||
|
|
||||||
6. Clone the forked repository from your profile to the created path:
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/YOURACC/community.mysql.git ~/ansible_collections/community/mysql
|
|
||||||
```
|
|
||||||
|
|
||||||
If you prefer to use the SSH protocol:
|
|
||||||
```bash
|
|
||||||
git clone git@github.com:YOURACC/community.mysql.git ~/ansible_collections/community/mysql
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
7. Go to your new cloned repository.
|
|
||||||
```bash
|
|
||||||
cd ~/ansible_collections/community/mysql
|
|
||||||
```
|
|
||||||
|
|
||||||
8. Be sure you are in the main branch:
|
|
||||||
```bash
|
|
||||||
git status
|
|
||||||
```
|
|
||||||
|
|
||||||
9. Show remotes. There should be the `origin` repository only:
|
|
||||||
```bash
|
|
||||||
git remote -v
|
|
||||||
```
|
|
||||||
|
|
||||||
10. Add the `upstream` repository:
|
|
||||||
```bash
|
|
||||||
git remote add upstream https://github.com/ansible-collections/community.mysql.git
|
|
||||||
```
|
|
||||||
|
|
||||||
11. Update your local `main` branch:
|
|
||||||
```bash
|
|
||||||
git fetch upstream
|
|
||||||
git rebase upstream/main
|
|
||||||
```
|
|
||||||
|
|
||||||
12. Create a branch for your changes:
|
|
||||||
```bash
|
|
||||||
git checkout -b name_of_my_branch
|
|
||||||
```
|
|
||||||
|
|
||||||
13. We recommend you start with writing integration tests if applicable.
|
|
||||||
|
|
||||||
Note: If there are any difficulties with writing the tests or you are not sure if the case can be covered, feel free to skip this step.
|
|
||||||
If needed, other contributors can help you with it later.
|
|
||||||
|
|
||||||
All integration tests are stored in `tests/integration/targets` subdirectories.
|
|
||||||
Go to the subdirectory containing the name of module you are going to change.
|
|
||||||
For example, if you are fixing the `mysql_user` module, its tests are in `tests/integration/targets/test_mysql_user/tasks`.
|
|
||||||
|
|
||||||
The `main.yml` file holds test tasks and includes other test files.
|
|
||||||
Look for a suitable test file to integrate your tests or create and include a dedicated test file.
|
|
||||||
You can use one of the existing test files as a draft.
|
|
||||||
|
|
||||||
When fixing a bug, write a task which reproduces the bug from the issue.
|
|
||||||
|
|
||||||
Put the reported case in the tests, then run integration tests with the following command:
|
|
||||||
```bash
|
|
||||||
ansible-test integration test_mysql_user --docker -vvv
|
|
||||||
```
|
|
||||||
If the tests do not want to run, first, check you complete step 3 of this guide.
|
|
||||||
|
|
||||||
If the tests ran successfully, there are usually two possible outcomes:
|
|
||||||
a) If the bug has not appeared and the tests have passed successfully, ask the reporter to provide more details. The bug can be not a bug actually or can relate to a particular software version used or specifics of local environment configuration.
|
|
||||||
|
|
||||||
b) The bug has appeared and the tests has failed as expected showing the reported symptoms.
|
|
||||||
|
|
||||||
14. Fix the bug.
|
|
||||||
|
|
||||||
15. Run `flake8` against a changed file. If it is `plugins/modules/mysql_user.py`:
|
|
||||||
```bash
|
|
||||||
flake8 plugins/modules/mysql_user.py
|
|
||||||
```
|
|
||||||
It is worth installing and running `flake8` against the changed file(s) first.
|
|
||||||
It shows unused imports, which is not shown by sanity tests (see the next step), as well as other common issues.
|
|
||||||
Optionally, you can use the `--max-line-length=160` command-line argument.
|
|
||||||
|
|
||||||
16. Run sanity tests:
|
|
||||||
```bash
|
|
||||||
ansible-test sanity plugins/modules/mysql_user.py --docker
|
|
||||||
```
|
|
||||||
If they failed, look at the output carefully - it is usually very informative and helps to identify a problem line quickly.
|
|
||||||
Sanity failings usually relate to wrong code and documentation formatting.
|
|
||||||
|
|
||||||
17. Run integration tests:
|
|
||||||
```bash
|
|
||||||
ansible-test integration test_mysql_user --docker -vvv
|
|
||||||
```
|
|
||||||
|
|
||||||
There are two possible outcomes:
|
|
||||||
a) They have failed. Look at the output of the command.
|
|
||||||
Fix the problem place in the code and run again.
|
|
||||||
Repeat the cycle until the tests pass.
|
|
||||||
|
|
||||||
b) They have passed. Remember they failed originally? Our congratulations! You have fixed the bug.
|
|
||||||
|
|
||||||
18. Commit your changes with an informative but short commit message:
|
|
||||||
```bash
|
|
||||||
git add /path/to/changed/file
|
|
||||||
git commit -m "mysql_user: fix crash when ..."
|
|
||||||
```
|
|
||||||
|
|
||||||
19. Push the branch to the `origin` (your fork):
|
|
||||||
```bash
|
|
||||||
git push origin name_of_my_branch
|
|
||||||
```
|
|
||||||
|
|
||||||
20. Go to the `upstream` (http://github.com/ansible-collections/community.mysql).
|
|
||||||
|
|
||||||
21. Go to `Pull requests` tab and create a pull request.
|
|
||||||
|
|
||||||
GitHub is tracking your fork, so it should see the new branch in it and automatically offer
|
|
||||||
to create a pull request. Sometimes GitHub does not do it and you should click the `New pull request` button yourself.
|
|
||||||
Then choose `compare across forks` under the `Compare changes` title.
|
|
||||||
Choose your repository and the new branch you pushed in the right drop-down list.
|
|
||||||
Confirm. Fill out the pull request template with all information you want to mention.
|
|
||||||
Put "Fixes + link to the issue" in the pull request's description.
|
|
||||||
Put "[WIP] + short description" in the pull request's title. It's often a good idea to mention the name of the module/plugin you are modifying at the beginning of the description.
|
|
||||||
Click `Create pull request`.
|
|
||||||
|
|
||||||
22. Add a [changelog fragment](https://docs.ansible.com/ansible/devel/community/development_process.html#changelogs) to the `changelog/fragments` directory. It will be published in release notes, so users will know about the fix.
|
|
||||||
|
|
||||||
Commit and push it:
|
|
||||||
```bash
|
|
||||||
git add changelog/fragments/myfragment.yml
|
|
||||||
git commit -m "Add changelog fragment"
|
|
||||||
git push origin name_of_my_branch
|
|
||||||
```
|
|
||||||
|
|
||||||
23. The CI tests will run automatically on Red Hat infrastructure after every commit.
|
|
||||||
|
|
||||||
You will see the CI status in the bottom of your pull request.
|
|
||||||
If they are green, remove "[WIP]" from the title. Mention the issue reporter in a comment and let contributors know that the pull request is "Ready for review".
|
|
||||||
|
|
||||||
24. Wait for reviews. You can also ask for review on IRC in the #ansible-community channel.
|
|
||||||
|
|
||||||
25. If the pull request looks good to the community, committers will merge it.
|
|
||||||
|
|
||||||
For details, refer to the [Ansible developer guide](https://docs.ansible.com/ansible/latest/dev_guide/index.html).
|
|
||||||
|
|
||||||
If you find any inconsistencies or places in this document which can be improved, feel free to raise an issue or pull request to fix it.
|
|
||||||
|
|
274
CONTRIBUTORS
Normal file
274
CONTRIBUTORS
Normal file
|
@ -0,0 +1,274 @@
|
||||||
|
116davinder
|
||||||
|
20
|
||||||
|
28
|
||||||
|
29
|
||||||
|
4
|
||||||
|
4n70w4
|
||||||
|
abadger
|
||||||
|
abondis
|
||||||
|
acozine
|
||||||
|
adamchainz
|
||||||
|
adq
|
||||||
|
Akasurde
|
||||||
|
Alexander198961
|
||||||
|
alustenberg
|
||||||
|
aminvakil
|
||||||
|
amitk79
|
||||||
|
amree
|
||||||
|
Andersson007
|
||||||
|
andrewhowdencom
|
||||||
|
ansibot
|
||||||
|
anthonyxpalermo
|
||||||
|
antonioribeiro
|
||||||
|
apollo13
|
||||||
|
aquach
|
||||||
|
arcmop
|
||||||
|
asad-at-srt
|
||||||
|
AshDevilRed
|
||||||
|
aurimasl
|
||||||
|
axelll
|
||||||
|
axisK
|
||||||
|
azielke
|
||||||
|
baldpale
|
||||||
|
banyek
|
||||||
|
BarbzYHOOL
|
||||||
|
Berbe
|
||||||
|
bjne
|
||||||
|
bmalynovytch
|
||||||
|
bmildren
|
||||||
|
boreal321
|
||||||
|
brutus
|
||||||
|
burner1024
|
||||||
|
calfonso
|
||||||
|
candeira
|
||||||
|
caphrim007
|
||||||
|
cdalbergue
|
||||||
|
checkphi
|
||||||
|
chrismeyersfsu
|
||||||
|
ChristopherGAndrews
|
||||||
|
cmodijk
|
||||||
|
codeaken
|
||||||
|
codebymikey
|
||||||
|
coreylane
|
||||||
|
CormacBracken
|
||||||
|
cosmix
|
||||||
|
cptMikky
|
||||||
|
crashes
|
||||||
|
dagwieers
|
||||||
|
damianmoore
|
||||||
|
Davidffry
|
||||||
|
denisemauldin
|
||||||
|
diclophis
|
||||||
|
d-lee
|
||||||
|
dmp1ce
|
||||||
|
dnelson
|
||||||
|
dramaley
|
||||||
|
drybjed
|
||||||
|
drzraf
|
||||||
|
DSpeichert
|
||||||
|
dungdm93
|
||||||
|
dwagelaar
|
||||||
|
dylanjbarth
|
||||||
|
einarc
|
||||||
|
E-M
|
||||||
|
eowin
|
||||||
|
Ernest0x
|
||||||
|
esamattis
|
||||||
|
Everspace
|
||||||
|
F21
|
||||||
|
faitno
|
||||||
|
felixfontein
|
||||||
|
flatrocks
|
||||||
|
fourjay
|
||||||
|
fraff
|
||||||
|
g00fy-
|
||||||
|
geerlingguy
|
||||||
|
georgeOsdDev
|
||||||
|
ghjm
|
||||||
|
ghost
|
||||||
|
giacmir
|
||||||
|
giorgio-v
|
||||||
|
gkoller
|
||||||
|
gottwald
|
||||||
|
gstorme
|
||||||
|
gundalow
|
||||||
|
hansbaer
|
||||||
|
hchargois
|
||||||
|
hluaces
|
||||||
|
hwali
|
||||||
|
hyperfocus1338
|
||||||
|
igormukhingmailcom
|
||||||
|
imjoseangel
|
||||||
|
infigoKriti
|
||||||
|
ipergenitsa
|
||||||
|
iredmail
|
||||||
|
ivandigiusto
|
||||||
|
jadbaz
|
||||||
|
jaikdean
|
||||||
|
jamescassell
|
||||||
|
janosmiko
|
||||||
|
jarnold-timeout
|
||||||
|
JaSafieddine
|
||||||
|
jborean93
|
||||||
|
jctanner
|
||||||
|
jean-christophe-manciot
|
||||||
|
Jean-Daniel
|
||||||
|
jgornick
|
||||||
|
jhagg
|
||||||
|
jhoekx
|
||||||
|
jirib
|
||||||
|
jkleckner
|
||||||
|
jkordish
|
||||||
|
jlaska
|
||||||
|
Jmainguy
|
||||||
|
jochu
|
||||||
|
JoelFeiner
|
||||||
|
johnavp1989
|
||||||
|
jonatasbaldin
|
||||||
|
Jorge-Rodriguez
|
||||||
|
jpjaatin
|
||||||
|
jpmens
|
||||||
|
JSafieddine
|
||||||
|
jsmartin
|
||||||
|
juergenhoetzel
|
||||||
|
jw34
|
||||||
|
kalaisubbiah
|
||||||
|
kenichi-ogawa-1988
|
||||||
|
kkeane
|
||||||
|
klingac
|
||||||
|
kotso
|
||||||
|
kuntalFreshBooks
|
||||||
|
kurtdavis
|
||||||
|
larsks
|
||||||
|
ldesgrange
|
||||||
|
leeadh
|
||||||
|
LeonB
|
||||||
|
leucos
|
||||||
|
loomsen
|
||||||
|
lorin
|
||||||
|
lowwalker
|
||||||
|
lperezs
|
||||||
|
makmanalp
|
||||||
|
manuelmorena
|
||||||
|
MarcinOrlowski
|
||||||
|
markdorison
|
||||||
|
markotitel
|
||||||
|
marktheunissen
|
||||||
|
markuman
|
||||||
|
mattclay
|
||||||
|
matt-horwood-mayden
|
||||||
|
mavimo
|
||||||
|
maxamillion
|
||||||
|
maxbube
|
||||||
|
mcgoldrickm
|
||||||
|
meanstrong
|
||||||
|
meersjo
|
||||||
|
megamisan
|
||||||
|
michaeldg
|
||||||
|
michalmedvecky
|
||||||
|
MikeiLL
|
||||||
|
milky-milk
|
||||||
|
milosz
|
||||||
|
mistaka0s
|
||||||
|
mklassen
|
||||||
|
mkrizek
|
||||||
|
mmoya
|
||||||
|
mohag
|
||||||
|
mohsenSy
|
||||||
|
mpdehaan
|
||||||
|
MRwangyd
|
||||||
|
mverwijs
|
||||||
|
mvgrimes
|
||||||
|
mysqlbox
|
||||||
|
netmonk
|
||||||
|
nhojpatrick
|
||||||
|
nicolas-g
|
||||||
|
NielsH
|
||||||
|
nitinkansal1984
|
||||||
|
nitzmahone
|
||||||
|
Ompragash
|
||||||
|
on
|
||||||
|
order
|
||||||
|
organman91
|
||||||
|
p53
|
||||||
|
pakal
|
||||||
|
paulbadcock
|
||||||
|
pennycoders
|
||||||
|
petoju
|
||||||
|
petracvv
|
||||||
|
pgrenaud
|
||||||
|
philfry
|
||||||
|
pileofrogs
|
||||||
|
pkaramol
|
||||||
|
platypus-geek
|
||||||
|
plumbeo
|
||||||
|
pratikgadiya12
|
||||||
|
pshanbhag
|
||||||
|
r0bj
|
||||||
|
rajsshah86
|
||||||
|
reduzent
|
||||||
|
relrod
|
||||||
|
resmo
|
||||||
|
ricco24
|
||||||
|
richlv
|
||||||
|
riupie
|
||||||
|
rndmh3ro
|
||||||
|
robertdebock
|
||||||
|
robpblake
|
||||||
|
rokka-n
|
||||||
|
Roxyrob
|
||||||
|
roysmith
|
||||||
|
rthouvenin
|
||||||
|
ruudk
|
||||||
|
samccann
|
||||||
|
samdoran
|
||||||
|
sayap
|
||||||
|
scottbrown
|
||||||
|
seanorama
|
||||||
|
sedrubal
|
||||||
|
sergey-trukhin
|
||||||
|
Shaps
|
||||||
|
shrikeh
|
||||||
|
sivel
|
||||||
|
skalfyfan
|
||||||
|
skoriy88
|
||||||
|
sperantus
|
||||||
|
spoyd
|
||||||
|
steverweber
|
||||||
|
steveteahan
|
||||||
|
stijnopheide
|
||||||
|
stintel
|
||||||
|
stoned
|
||||||
|
strixBE
|
||||||
|
SWADESNA
|
||||||
|
tapologo
|
||||||
|
tejatsk14
|
||||||
|
tersmitten
|
||||||
|
the
|
||||||
|
the02
|
||||||
|
thomasliddledba
|
||||||
|
time-palominodb
|
||||||
|
timorunge
|
||||||
|
Tomasthanes
|
||||||
|
tomdymond
|
||||||
|
Tronde
|
||||||
|
tvlooy
|
||||||
|
tyll
|
||||||
|
UncertaintyP
|
||||||
|
unnecessary-username
|
||||||
|
vamshi8
|
||||||
|
vanne
|
||||||
|
vdboor
|
||||||
|
vmahadev
|
||||||
|
v-zhuravlev
|
||||||
|
webmat
|
||||||
|
wedi
|
||||||
|
whysthatso
|
||||||
|
willthames
|
||||||
|
windowsansiblernew
|
||||||
|
wrosario
|
||||||
|
xiata
|
||||||
|
Xyon
|
||||||
|
yangchao0512
|
||||||
|
ziegenberg
|
||||||
|
Zverik
|
3
MAINTAINERS
Normal file
3
MAINTAINERS
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
bmalynovytch
|
||||||
|
Jorge-Rodriguez
|
||||||
|
Andersson007 (andersson007_ in #ansible-community IRC)
|
3
MAINTAINING.md
Normal file
3
MAINTAINING.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Maintaining this collection
|
||||||
|
|
||||||
|
Refer to the [Maintainer guidelines](https://github.com/ansible/community-docs/blob/main/maintaining.rst).
|
88
README.md
88
README.md
|
@ -1,6 +1,53 @@
|
||||||
# MySQL collection for Ansible
|
# MySQL collection for Ansible
|
||||||
[](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Plugins+CI") [](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Roles+CI") [](https://codecov.io/gh/ansible-collections/community.mysql)
|
[](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Plugins+CI") [](https://github.com/ansible-collections/community.mysql/actions?query=workflow%3A"Roles+CI") [](https://codecov.io/gh/ansible-collections/community.mysql)
|
||||||
|
|
||||||
|
This collection is a part of the Ansible package.
|
||||||
|
|
||||||
|
## Code of Conduct
|
||||||
|
|
||||||
|
We follow the [Ansible Code of Conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html) in all our interactions within this project.
|
||||||
|
|
||||||
|
If you encounter abusive behavior violating the [Ansible Code of Conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html), please refer to the [policy violations](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html#policy-violations) section of the Code of Conduct for information on how to raise a complaint.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
The content of this collection is made by [people](https://github.com/ansible-collections/community.mysql/blob/main/CONTRIBUTORS) just like you, a community of individuals collaborating on making the world better through developing automation software.
|
||||||
|
|
||||||
|
We are actively accepting new contributors.
|
||||||
|
|
||||||
|
Any kind of contribution is very welcome.
|
||||||
|
|
||||||
|
You don't know how to start? Refer to our [contribution guide](https://github.com/ansible-collections/community.mysql/blob/main/CONTRIBUTING.md)!
|
||||||
|
|
||||||
|
## Collection maintenance
|
||||||
|
|
||||||
|
The current maintainers (contributors with `write` or higher access) are listed in the [MAINTAINERS](https://github.com/ansible-collections/community.mysql/blob/main/MAINTAINERS) file. If you have questions or need help, feel free to mention them in the proposals.
|
||||||
|
|
||||||
|
To learn how to maintain / become a maintainer of this collection, refer to the [Maintainer guidelines](https://github.com/ansible-collections/community.mysql/blob/main/MAINTAINING.md).
|
||||||
|
|
||||||
|
It is necessary for maintainers of this collection to be subscribed to:
|
||||||
|
|
||||||
|
* The collection itself (the `Watch` button -> `All Activity` in the upper right corner of the repository's homepage).
|
||||||
|
* The "Changes Impacting Collection Contributors and Maintainers" [issue](https://github.com/ansible-collections/overview/issues/45).
|
||||||
|
|
||||||
|
They also should be subscribed to Ansible's [The Bullhorn newsletter](https://docs.ansible.com/ansible/devel/community/communication.html#the-bullhorn).
|
||||||
|
|
||||||
|
## Communication
|
||||||
|
|
||||||
|
We announce releases and important changes through Ansible's [The Bullhorn newsletter](https://eepurl.com/gZmiEP). Be sure you are subscribed.
|
||||||
|
|
||||||
|
Join us in the `#ansible` (general use questions and support), `#ansible-community` (community and collection development questions), and other [IRC channels](https://docs.ansible.com/ansible/devel/community/communication.html#irc-channels) on [Libera.Chat](https://libera.chat).
|
||||||
|
|
||||||
|
We take part in the global quarterly [Ansible Contributor Summit](https://github.com/ansible/community/wiki/Contributor-Summit) virtually or in-person. Track [The Bullhorn newsletter](https://eepurl.com/gZmiEP) and join us.
|
||||||
|
|
||||||
|
For more information about communication, refer to the [Ansible Communication guide](https://docs.ansible.com/ansible/devel/community/communication.html).
|
||||||
|
|
||||||
|
## Governance
|
||||||
|
|
||||||
|
The process of decision making in this collection is based on discussing and finding consensus among participants.
|
||||||
|
|
||||||
|
Every voice is important and every idea is valuable. If you have something on your mind, create an issue or dedicated discussion and let's discuss it!
|
||||||
|
|
||||||
## Included content
|
## Included content
|
||||||
|
|
||||||
- **Modules**:
|
- **Modules**:
|
||||||
|
@ -11,16 +58,31 @@
|
||||||
- [mysql_user](https://docs.ansible.com/ansible/latest/collections/community/mysql/mysql_user_module.html)
|
- [mysql_user](https://docs.ansible.com/ansible/latest/collections/community/mysql/mysql_user_module.html)
|
||||||
- [mysql_variables](https://docs.ansible.com/ansible/latest/collections/community/mysql/mysql_variables_module.html)
|
- [mysql_variables](https://docs.ansible.com/ansible/latest/collections/community/mysql/mysql_variables_module.html)
|
||||||
|
|
||||||
## Tested with Ansible
|
## Tested with
|
||||||
|
|
||||||
|
### ansible-core
|
||||||
|
|
||||||
- 2.9
|
|
||||||
- 2.10
|
|
||||||
- 2.11
|
- 2.11
|
||||||
- devel
|
- 2.12
|
||||||
|
- 2.13
|
||||||
|
- current development version
|
||||||
|
|
||||||
|
### Databases
|
||||||
|
|
||||||
|
- mysql 5.7.31
|
||||||
|
- mysql 8.0.22
|
||||||
|
- mariadb 10.3.34
|
||||||
|
- mariadb 10.5.9
|
||||||
|
|
||||||
|
### Database connectors
|
||||||
|
|
||||||
|
- pymysql 0.7.10
|
||||||
|
- pymysql 0.9.3
|
||||||
|
- mysqlclient 2.0.1
|
||||||
|
|
||||||
## External requirements
|
## External requirements
|
||||||
|
|
||||||
The MySQL modules rely on a MySQL connector. The list of supported drivers is below:
|
The MySQL modules rely on a MySQL connector. The list of supported drivers is below:
|
||||||
|
|
||||||
- [PyMySQL](https://github.com/PyMySQL/PyMySQL)
|
- [PyMySQL](https://github.com/PyMySQL/PyMySQL)
|
||||||
- [MySQLdb](https://github.com/PyMySQL/mysqlclient-python)
|
- [MySQLdb](https://github.com/PyMySQL/mysqlclient-python)
|
||||||
|
@ -44,12 +106,20 @@ collections:
|
||||||
- name: community.mysql
|
- name: community.mysql
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note that if you install the collection from Ansible Galaxy, it will not be upgraded automatically if you upgrade the Ansible package. To upgrade the collection to the latest available version, run the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ansible-galaxy collection install community.mysql --upgrade
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ansible-galaxy collection install community.mysql:==2.0.0
|
||||||
|
```
|
||||||
|
|
||||||
See [Ansible Using collections](https://docs.ansible.com/ansible/latest/user_guide/collections_using.html) for more details.
|
See [Ansible Using collections](https://docs.ansible.com/ansible/latest/user_guide/collections_using.html) for more details.
|
||||||
|
|
||||||
## Contributing
|
|
||||||
|
|
||||||
See the [contribution guide](CONTRIBUTING.md).
|
|
||||||
|
|
||||||
## Licensing
|
## Licensing
|
||||||
|
|
||||||
<!-- Include the appropriate license information here and a pointer to the full licensing details. If the collection contains modules migrated from the ansible/ansible repo, you must use the same license that existed in the ansible/ansible repo. See the GNU license example below. -->
|
<!-- Include the appropriate license information here and a pointer to the full licensing details. If the collection contains modules migrated from the ansible/ansible repo, you must use the same license that existed in the ansible/ansible repo. See the GNU license example below. -->
|
||||||
|
|
|
@ -1,38 +1,3 @@
|
||||||
# Review Checklist
|
# Review Checklist
|
||||||
|
|
||||||
When reviewing, keep in mind that we follow [Ansible Code of Conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html) in all our contributions and interactions within this repository.
|
Refer to the [Collection review checklist](https://github.com/ansible/community-docs/blob/main/review_checklist.rst).
|
||||||
|
|
||||||
If you are a committer, also refer to the [Ansible committer guidelines](https://docs.ansible.com/ansible/devel/community/committer_guidelines.html).
|
|
||||||
|
|
||||||
**General tips**
|
|
||||||
- Try to create a culture of collaboration when reviewing
|
|
||||||
- Welcome the author and thank them for the pull request
|
|
||||||
- When suggesting changes, try to use questions, not statements
|
|
||||||
- When suggesting mandatory changes, do it as politely as possible providing documentation references
|
|
||||||
- If your suggestion is optional or a matter of personal preferences, please say it explicitly
|
|
||||||
- When asking for adding tests or for complex code refactoring, say that the author is welcome to ask for clarifications and help if they need
|
|
||||||
- If somebody suggests a good idea, mention it or put a thumbs up
|
|
||||||
- After merging, thank the author and reviewers for their time and effort
|
|
||||||
|
|
||||||
**Standards and documentation**
|
|
||||||
- [ ] if the pull request is not a documentation fix, it must include a [changelog fragment](https://docs.ansible.com/ansible/devel/community/development_process.html#creating-a-changelog-fragment) - please check the format carefully
|
|
||||||
- [ ] if new files are added with the pull request, they follow the [licensing rules](https://github.com/ansible-collections/overview/blob/main/collection_requirements.rst#licensing)
|
|
||||||
- [ ] the changes follow the [Ansible documentation standards](https://docs.ansible.com/ansible/devel/dev_guide/developing_modules_documenting.html) and the [style guide](https://docs.ansible.com/ansible/devel/dev_guide/style_guide/index.html#style-guide)
|
|
||||||
- [ ] the changes follow the [development conventions](https://docs.ansible.com/ansible/devel/dev_guide/developing_modules_best_practices.html)
|
|
||||||
- [ ] if a new plugin is added, it is one of the [allowed plugin types](https://github.com/ansible-collections/overview/blob/main/collection_requirements.rst#modules-plugins)
|
|
||||||
- [ ] documentation, examples, and return sections use FQCNs for the `M(..)` [format macros](https://docs.ansible.com/ansible/latest/dev_guide/developing_modules_documenting.html#linking-and-other-format-macros-within-module-documentation) when referring to modules
|
|
||||||
- [ ] modules and plugins from ansible-core use `ansible.builtin.` as a FQCN prefix when mentioned
|
|
||||||
- [ ] when a new option, module, plugin, or return value is added, the corresponding documentation or return sections use `version_added:` containing the *collection* version which they will be first released in
|
|
||||||
* this usually is the next minor release, sometimes the next major release (example: if 2.7.5 is the current release, the next minor release will be 2.8.0, and the next major release will be 3.0.0)
|
|
||||||
- [ ] FQCNs are used for `extends_documentation_fragment:`, unless the author is referring to doc_fragments from ansible-core
|
|
||||||
|
|
||||||
**Tests (if applicable and technically possible to implement)**
|
|
||||||
- [ ] the pull request has [integration tests](https://docs.ansible.com/ansible/devel/dev_guide/testing_integration.html)
|
|
||||||
- [ ] the pull request has [unit tests](https://docs.ansible.com/ansible/devel/dev_guide/testing_units.html)
|
|
||||||
- [ ] all changes are covered
|
|
||||||
- [ ] integration tests also cover `check_mode` (if it is supported)
|
|
||||||
- [ ] integration tests check an actual state of the system, not only what the module reports (for example, if the module changes a file, check that the file was actually changed by using the `ansible.builtin.stat` module)
|
|
||||||
|
|
||||||
**Other**
|
|
||||||
- [ ] the pull request does not contain merge commits (see GitHub warnings at the bottom of the pull request) - in this case, ask the author to rebase the pull request branch
|
|
||||||
- [ ] if the pull request contains breaking changes, ask the author and the collection maintainers if it is really needed and there is no way not to introduce them
|
|
||||||
|
|
|
@ -235,3 +235,116 @@ releases:
|
||||||
- 107-mysql_user_fix_grant_on_col_handling.yml
|
- 107-mysql_user_fix_grant_on_col_handling.yml
|
||||||
- 97-mysql_replication_deprecate_offending_terminology.yml
|
- 97-mysql_replication_deprecate_offending_terminology.yml
|
||||||
release_date: '2021-03-08'
|
release_date: '2021-03-08'
|
||||||
|
1.4.0:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- mysql_user - add support for ``REPLICA MONITOR`` privilege (https://github.com/ansible-collections/community.mysql/issues/105).
|
||||||
|
major_changes:
|
||||||
|
- mysql_user - the ``REQUIRESSL`` is an alias for the ``ssl`` key in the ``tls_requires``
|
||||||
|
option in ``community.mysql`` 2.0.0 and support will be dropped altogether
|
||||||
|
in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/issues/121).
|
||||||
|
minor_changes:
|
||||||
|
- mysql module utils - change deprecated connection parameters ``passwd`` and
|
||||||
|
``db`` to ``password`` and ``database`` (https://github.com/ansible-collections/community.mysql/pull/116).
|
||||||
|
- mysql_collection - introduce codebabse split to handle divergences between
|
||||||
|
MySQL and MariaDB (https://github.com/ansible-collections/community.mysql/pull/103).
|
||||||
|
- mysql_info - add `version.full` and `version.suffix` return values (https://github.com/ansible-collections/community.mysql/issues/114).
|
||||||
|
- mysql_user - deprecate the ``REQUIRESSL`` privilege (https://github.com/ansible-collections/community.mysql/issues/101).
|
||||||
|
release_summary: 'This is the minor release of the ``community.mysql`` collection.
|
||||||
|
|
||||||
|
This changelog contains all changes to the modules in this collection
|
||||||
|
|
||||||
|
that have been added after the release of ``community.mysql`` 1.3.0.'''
|
||||||
|
fragments:
|
||||||
|
- 1.4.0.yml
|
||||||
|
- 101-drop-requiressl-support.yml
|
||||||
|
- 103-mysql_and_mariadb_divergence.yml
|
||||||
|
- 108-mysql_priv_add_grant.yml
|
||||||
|
- 115-add_mysql_full_version_suffix_return_var.yml
|
||||||
|
- 116-change_deprecated_connection_ parameters.yml
|
||||||
|
release_date: '2021-04-16'
|
||||||
|
1.4.1:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- mysql - revert changes of connector arguments made in pull request 116 causing
|
||||||
|
the invalid keyword argument error (https://github.com/ansible-collections/community.mysql/pull/116).
|
||||||
|
release_summary: 'This is the patch release of the ``community.mysql`` collection.
|
||||||
|
|
||||||
|
This changelog contains all changes to the modules in this collection
|
||||||
|
|
||||||
|
that have been added after the release of ``community.mysql`` 1.4.0.'
|
||||||
|
fragments:
|
||||||
|
- 1.4.1.yml
|
||||||
|
- 153-mysql_revert_connector_changes.yml
|
||||||
|
release_date: '2021-04-23'
|
||||||
|
1.4.2:
|
||||||
|
changes:
|
||||||
|
minor_changes:
|
||||||
|
- mysql_query - correctly reflect changed status in replace statements (https://github.com/ansible-collections/community.mysql/pull/193).
|
||||||
|
release_summary: 'This is the patch release of the ``community.mysql`` collection.
|
||||||
|
|
||||||
|
This changelog contains all changes to the modules in this collection that
|
||||||
|
|
||||||
|
have been added after the release of ``community.mysql`` 1.4.1.'
|
||||||
|
fragments:
|
||||||
|
- 1.4.2.yml
|
||||||
|
- 193-reflect_changed_status_in_replace_statements.yml
|
||||||
|
release_date: '2021-08-11'
|
||||||
|
1.4.3:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- mysql_info - fix TypeError failure when there are databases that do not contain
|
||||||
|
tables (https://github.com/ansible-collections/community.mysql/issues/204).
|
||||||
|
release_summary: 'This is the patch release of the ``community.mysql`` collection.
|
||||||
|
|
||||||
|
This changelog contains all changes to the modules in this collection that
|
||||||
|
|
||||||
|
have been added after the release of ``community.mysql`` 1.4.2.'
|
||||||
|
fragments:
|
||||||
|
- 1.4.3.yml
|
||||||
|
- 205-mysql_info_fix_failure_when_no_tables_in_db.yml
|
||||||
|
release_date: '2021-09-23'
|
||||||
|
1.4.4:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- Collection core functions - use vendored version of ``distutils.version``
|
||||||
|
instead of the deprecated Python standard library ``distutils`` (https://github.com/ansible-collections/community.mysql/pull/269).
|
||||||
|
release_summary: 'This is the patch release of the ``community.mysql`` collection.
|
||||||
|
|
||||||
|
This changelog contains all changes to the modules in this collection that
|
||||||
|
|
||||||
|
have been added after the release of ``community.mysql`` 1.4.3.'
|
||||||
|
fragments:
|
||||||
|
- 1.4.4.yml
|
||||||
|
- 267-prepare_for_distutils_be_removed.yml
|
||||||
|
release_date: '2022-01-18'
|
||||||
|
1.4.5:
|
||||||
|
changes:
|
||||||
|
bugfixes:
|
||||||
|
- mysql_user - fix missing dynamic privileges after revoke and grant privileges
|
||||||
|
to user (https://github.com/ansible-collections/community.mysql/issues/120).
|
||||||
|
- mysql_user - fix parsing privs when a user has roles assigned (https://github.com/ansible-collections/community.mysql/issues/231).
|
||||||
|
- 'mysql_user - fix the possibility for a race condition that breaks certain
|
||||||
|
(circular) replication configurations when ``DROP USER`` is executed on multiple
|
||||||
|
nodes in the replica set. Adding ``IF EXISTS`` avoids the need to use ``sql_log_bin:
|
||||||
|
no`` making the statement always replication safe (https://github.com/ansible-collections/community.mysql/pull/287).'
|
||||||
|
major_changes:
|
||||||
|
- The community.mysql collection no longer supports ``Ansible 2.9`` and ``ansible-base
|
||||||
|
2.10``. While we take no active measures to prevent usage and there are no
|
||||||
|
plans to introduce incompatible code to the modules, we will stop testing
|
||||||
|
against ``Ansible 2.9`` and ``ansible-base 2.10``. Both will very soon be
|
||||||
|
End of Life and if you are still using them, you should consider upgrading
|
||||||
|
to the ``latest Ansible / ansible-core 2.11 or later`` as soon as possible
|
||||||
|
(https://github.com/ansible-collections/community.mysql/pull/343).
|
||||||
|
release_summary: 'This is the patch release of the ``community.mysql`` collection.
|
||||||
|
|
||||||
|
This changelog contains all changes to the modules in this collection that
|
||||||
|
|
||||||
|
have been added after the release of ``community.mysql`` 1.4.4.'
|
||||||
|
fragments:
|
||||||
|
- 001-mysql_user_fix_pars_users_with_roles_assigned.yml
|
||||||
|
- 1.4.5.yml
|
||||||
|
- 307-mysql_user_add_if_exists_to_drop.yml
|
||||||
|
- 338-mysql_user_fix.yml
|
||||||
|
- drop_support_of_2.9-2.10.yml
|
||||||
|
release_date: '2022-05-13'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
changelog_filename_template: CHANGELOG.rst
|
changelog_filename_template: ../CHANGELOG.rst
|
||||||
changelog_filename_version_depth: 0
|
changelog_filename_version_depth: 0
|
||||||
changes_file: changelog.yaml
|
changes_file: changelog.yaml
|
||||||
changes_format: combined
|
changes_format: combined
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- mysql_user - deprecate the ``REQUIRESSL`` privilege (https://github.com/ansible-collections/community.mysql/issues/101).
|
|
||||||
major_changes:
|
|
||||||
- mysql_user - the ``REQUIRESSL`` is an alias for the ``ssl`` key in the ``tls_requires`` option in ``community.mysql`` 2.0.0 and support will be dropped altogether in ``community.mysql`` 3.0.0 (https://github.com/ansible-collections/community.mysql/issues/121).
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- mysql_collection - introduce codebabse split to handle divergences between MySQL and MariaDB (https://github.com/ansible-collections/community.mysql/pull/103).
|
|
|
@ -1,2 +0,0 @@
|
||||||
bugfixes:
|
|
||||||
- mysql_user - add support for ``REPLICA MONITOR`` privilege (https://github.com/ansible-collections/community.mysql/issues/105).
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- mysql_info - add `version.full` and `version.suffix` return values (https://github.com/ansible-collections/community.mysql/issues/114).
|
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- mysql module utils - change deprecated connection parameters ``passwd`` and ``db`` to ``password`` and ``database`` (https://github.com/ansible-collections/community.mysql/pull/116).
|
|
|
@ -1,6 +1,6 @@
|
||||||
namespace: community
|
namespace: community
|
||||||
name: mysql
|
name: mysql
|
||||||
version: 1.3.0
|
version: 1.4.5
|
||||||
readme: README.md
|
readme: README.md
|
||||||
authors:
|
authors:
|
||||||
- Ansible community
|
- Ansible community
|
||||||
|
|
|
@ -67,21 +67,25 @@ options:
|
||||||
- Whether to validate the server host name when an SSL connection is required. Corresponds to MySQL CLIs C(--ssl) switch.
|
- Whether to validate the server host name when an SSL connection is required. Corresponds to MySQL CLIs C(--ssl) switch.
|
||||||
- Setting this to C(false) disables hostname verification. Use with caution.
|
- Setting this to C(false) disables hostname verification. Use with caution.
|
||||||
- Requires pymysql >= 0.7.11.
|
- Requires pymysql >= 0.7.11.
|
||||||
- This optoin has no effect on MySQLdb.
|
- This option has no effect on MySQLdb.
|
||||||
type: bool
|
type: bool
|
||||||
version_added: '1.1.0'
|
version_added: '1.1.0'
|
||||||
requirements:
|
requirements:
|
||||||
- PyMySQL (Python 2.7 and Python 3.X), or
|
- mysqlclient (Python 3.5+) or
|
||||||
|
- PyMySQL (Python 2.7 and Python 3.x) or
|
||||||
- MySQLdb (Python 2.x)
|
- MySQLdb (Python 2.x)
|
||||||
notes:
|
notes:
|
||||||
- Requires the PyMySQL (Python 2.7 and Python 3.X) or MySQL-python (Python 2.X) package installed on the remote host.
|
- Requires the PyMySQL (Python 2.7 and Python 3.X) or MySQL-python (Python 2.X) package installed on the remote host.
|
||||||
The Python package may be installed with apt-get install python-pymysql (Ubuntu; see M(ansible.builtin.apt)) or
|
The Python package may be installed with apt-get install python-pymysql (Ubuntu; see M(ansible.builtin.apt)) or
|
||||||
yum install python2-PyMySQL (RHEL/CentOS/Fedora; see M(ansible.builtin.yum)). You can also use dnf install python2-PyMySQL
|
yum install python2-PyMySQL (RHEL/CentOS/Fedora; see M(ansible.builtin.yum)). You can also use dnf install python2-PyMySQL
|
||||||
for newer versions of Fedora; see M(ansible.builtin.dnf).
|
for newer versions of Fedora; see M(ansible.builtin.dnf).
|
||||||
- Be sure you have PyMySQL or MySQLdb library installed on the target machine
|
- Be sure you have mysqlclient, PyMySQL, or MySQLdb library installed on the target machine
|
||||||
for the Python interpreter Ansible uses, for example, if it is Python 3,
|
for the Python interpreter Ansible discovers. For example if ansible discovers and uses Python 3, you need to install
|
||||||
you must install the library for Python 3. You can also change the interpreter.
|
the Python 3 version of PyMySQL or mysqlclient. If ansible discovers and uses Python 2, you need to install the Python 2
|
||||||
For more information, see U(https://docs.ansible.com/ansible/latest/reference_appendices/interpreter_discovery.html).
|
version of either PyMySQL or MySQL-python.
|
||||||
|
- If you have trouble, it may help to force Ansible to use the Python interpreter you need by specifying
|
||||||
|
C(ansible_python_interpreter). For more information, see
|
||||||
|
U(https://docs.ansible.com/ansible/latest/reference_appendices/interpreter_discovery.html).
|
||||||
- Both C(login_password) and C(login_user) are required when you are
|
- Both C(login_password) and C(login_user) are required when you are
|
||||||
passing credentials. If none are present, the module will attempt to read
|
passing credentials. If none are present, the module will attempt to read
|
||||||
the credentials from C(~/.my.cnf), and finally fall back to using the MySQL
|
the credentials from C(~/.my.cnf), and finally fall back to using the MySQL
|
||||||
|
|
343
plugins/module_utils/_version.py
Normal file
343
plugins/module_utils/_version.py
Normal file
|
@ -0,0 +1,343 @@
|
||||||
|
# Vendored copy of distutils/version.py from CPython 3.9.5
|
||||||
|
#
|
||||||
|
# Implements multiple version numbering conventions for the
|
||||||
|
# Python Module Distribution Utilities.
|
||||||
|
#
|
||||||
|
# PSF License (see licenses/PSF-license.txt or https://opensource.org/licenses/Python-2.0)
|
||||||
|
#
|
||||||
|
|
||||||
|
"""Provides classes to represent module version numbers (one class for
|
||||||
|
each style of version numbering). There are currently two such classes
|
||||||
|
implemented: StrictVersion and LooseVersion.
|
||||||
|
|
||||||
|
Every version number class implements the following interface:
|
||||||
|
* the 'parse' method takes a string and parses it to some internal
|
||||||
|
representation; if the string is an invalid version number,
|
||||||
|
'parse' raises a ValueError exception
|
||||||
|
* the class constructor takes an optional string argument which,
|
||||||
|
if supplied, is passed to 'parse'
|
||||||
|
* __str__ reconstructs the string that was passed to 'parse' (or
|
||||||
|
an equivalent string -- ie. one that will generate an equivalent
|
||||||
|
version number instance)
|
||||||
|
* __repr__ generates Python code to recreate the version number instance
|
||||||
|
* _cmp compares the current instance with either another instance
|
||||||
|
of the same class or a string (which will be parsed to an instance
|
||||||
|
of the same class, thus must follow the same rules)
|
||||||
|
"""
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
import re
|
||||||
|
|
||||||
|
try:
|
||||||
|
RE_FLAGS = re.VERBOSE | re.ASCII
|
||||||
|
except AttributeError:
|
||||||
|
RE_FLAGS = re.VERBOSE
|
||||||
|
|
||||||
|
|
||||||
|
class Version:
|
||||||
|
"""Abstract base class for version numbering classes. Just provides
|
||||||
|
constructor (__init__) and reproducer (__repr__), because those
|
||||||
|
seem to be the same for all version numbering classes; and route
|
||||||
|
rich comparisons to _cmp.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, vstring=None):
|
||||||
|
if vstring:
|
||||||
|
self.parse(vstring)
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return "%s ('%s')" % (self.__class__.__name__, str(self))
|
||||||
|
|
||||||
|
def __eq__(self, other):
|
||||||
|
c = self._cmp(other)
|
||||||
|
if c is NotImplemented:
|
||||||
|
return c
|
||||||
|
return c == 0
|
||||||
|
|
||||||
|
def __lt__(self, other):
|
||||||
|
c = self._cmp(other)
|
||||||
|
if c is NotImplemented:
|
||||||
|
return c
|
||||||
|
return c < 0
|
||||||
|
|
||||||
|
def __le__(self, other):
|
||||||
|
c = self._cmp(other)
|
||||||
|
if c is NotImplemented:
|
||||||
|
return c
|
||||||
|
return c <= 0
|
||||||
|
|
||||||
|
def __gt__(self, other):
|
||||||
|
c = self._cmp(other)
|
||||||
|
if c is NotImplemented:
|
||||||
|
return c
|
||||||
|
return c > 0
|
||||||
|
|
||||||
|
def __ge__(self, other):
|
||||||
|
c = self._cmp(other)
|
||||||
|
if c is NotImplemented:
|
||||||
|
return c
|
||||||
|
return c >= 0
|
||||||
|
|
||||||
|
|
||||||
|
# Interface for version-number classes -- must be implemented
|
||||||
|
# by the following classes (the concrete ones -- Version should
|
||||||
|
# be treated as an abstract class).
|
||||||
|
# __init__ (string) - create and take same action as 'parse'
|
||||||
|
# (string parameter is optional)
|
||||||
|
# parse (string) - convert a string representation to whatever
|
||||||
|
# internal representation is appropriate for
|
||||||
|
# this style of version numbering
|
||||||
|
# __str__ (self) - convert back to a string; should be very similar
|
||||||
|
# (if not identical to) the string supplied to parse
|
||||||
|
# __repr__ (self) - generate Python code to recreate
|
||||||
|
# the instance
|
||||||
|
# _cmp (self, other) - compare two version numbers ('other' may
|
||||||
|
# be an unparsed version string, or another
|
||||||
|
# instance of your version class)
|
||||||
|
|
||||||
|
|
||||||
|
class StrictVersion(Version):
|
||||||
|
"""Version numbering for anal retentives and software idealists.
|
||||||
|
Implements the standard interface for version number classes as
|
||||||
|
described above. A version number consists of two or three
|
||||||
|
dot-separated numeric components, with an optional "pre-release" tag
|
||||||
|
on the end. The pre-release tag consists of the letter 'a' or 'b'
|
||||||
|
followed by a number. If the numeric components of two version
|
||||||
|
numbers are equal, then one with a pre-release tag will always
|
||||||
|
be deemed earlier (lesser) than one without.
|
||||||
|
|
||||||
|
The following are valid version numbers (shown in the order that
|
||||||
|
would be obtained by sorting according to the supplied cmp function):
|
||||||
|
|
||||||
|
0.4 0.4.0 (these two are equivalent)
|
||||||
|
0.4.1
|
||||||
|
0.5a1
|
||||||
|
0.5b3
|
||||||
|
0.5
|
||||||
|
0.9.6
|
||||||
|
1.0
|
||||||
|
1.0.4a3
|
||||||
|
1.0.4b1
|
||||||
|
1.0.4
|
||||||
|
|
||||||
|
The following are examples of invalid version numbers:
|
||||||
|
|
||||||
|
1
|
||||||
|
2.7.2.2
|
||||||
|
1.3.a4
|
||||||
|
1.3pl1
|
||||||
|
1.3c4
|
||||||
|
|
||||||
|
The rationale for this version numbering system will be explained
|
||||||
|
in the distutils documentation.
|
||||||
|
"""
|
||||||
|
|
||||||
|
version_re = re.compile(r'^(\d+) \. (\d+) (\. (\d+))? ([ab](\d+))?$',
|
||||||
|
RE_FLAGS)
|
||||||
|
|
||||||
|
def parse(self, vstring):
|
||||||
|
match = self.version_re.match(vstring)
|
||||||
|
if not match:
|
||||||
|
raise ValueError("invalid version number '%s'" % vstring)
|
||||||
|
|
||||||
|
(major, minor, patch, prerelease, prerelease_num) = \
|
||||||
|
match.group(1, 2, 4, 5, 6)
|
||||||
|
|
||||||
|
if patch:
|
||||||
|
self.version = tuple(map(int, [major, minor, patch]))
|
||||||
|
else:
|
||||||
|
self.version = tuple(map(int, [major, minor])) + (0,)
|
||||||
|
|
||||||
|
if prerelease:
|
||||||
|
self.prerelease = (prerelease[0], int(prerelease_num))
|
||||||
|
else:
|
||||||
|
self.prerelease = None
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
if self.version[2] == 0:
|
||||||
|
vstring = '.'.join(map(str, self.version[0:2]))
|
||||||
|
else:
|
||||||
|
vstring = '.'.join(map(str, self.version))
|
||||||
|
|
||||||
|
if self.prerelease:
|
||||||
|
vstring = vstring + self.prerelease[0] + str(self.prerelease[1])
|
||||||
|
|
||||||
|
return vstring
|
||||||
|
|
||||||
|
def _cmp(self, other):
|
||||||
|
if isinstance(other, str):
|
||||||
|
other = StrictVersion(other)
|
||||||
|
elif not isinstance(other, StrictVersion):
|
||||||
|
return NotImplemented
|
||||||
|
|
||||||
|
if self.version != other.version:
|
||||||
|
# numeric versions don't match
|
||||||
|
# prerelease stuff doesn't matter
|
||||||
|
if self.version < other.version:
|
||||||
|
return -1
|
||||||
|
else:
|
||||||
|
return 1
|
||||||
|
|
||||||
|
# have to compare prerelease
|
||||||
|
# case 1: neither has prerelease; they're equal
|
||||||
|
# case 2: self has prerelease, other doesn't; other is greater
|
||||||
|
# case 3: self doesn't have prerelease, other does: self is greater
|
||||||
|
# case 4: both have prerelease: must compare them!
|
||||||
|
|
||||||
|
if (not self.prerelease and not other.prerelease):
|
||||||
|
return 0
|
||||||
|
elif (self.prerelease and not other.prerelease):
|
||||||
|
return -1
|
||||||
|
elif (not self.prerelease and other.prerelease):
|
||||||
|
return 1
|
||||||
|
elif (self.prerelease and other.prerelease):
|
||||||
|
if self.prerelease == other.prerelease:
|
||||||
|
return 0
|
||||||
|
elif self.prerelease < other.prerelease:
|
||||||
|
return -1
|
||||||
|
else:
|
||||||
|
return 1
|
||||||
|
else:
|
||||||
|
raise AssertionError("never get here")
|
||||||
|
|
||||||
|
# end class StrictVersion
|
||||||
|
|
||||||
|
# The rules according to Greg Stein:
|
||||||
|
# 1) a version number has 1 or more numbers separated by a period or by
|
||||||
|
# sequences of letters. If only periods, then these are compared
|
||||||
|
# left-to-right to determine an ordering.
|
||||||
|
# 2) sequences of letters are part of the tuple for comparison and are
|
||||||
|
# compared lexicographically
|
||||||
|
# 3) recognize the numeric components may have leading zeroes
|
||||||
|
#
|
||||||
|
# The LooseVersion class below implements these rules: a version number
|
||||||
|
# string is split up into a tuple of integer and string components, and
|
||||||
|
# comparison is a simple tuple comparison. This means that version
|
||||||
|
# numbers behave in a predictable and obvious way, but a way that might
|
||||||
|
# not necessarily be how people *want* version numbers to behave. There
|
||||||
|
# wouldn't be a problem if people could stick to purely numeric version
|
||||||
|
# numbers: just split on period and compare the numbers as tuples.
|
||||||
|
# However, people insist on putting letters into their version numbers;
|
||||||
|
# the most common purpose seems to be:
|
||||||
|
# - indicating a "pre-release" version
|
||||||
|
# ('alpha', 'beta', 'a', 'b', 'pre', 'p')
|
||||||
|
# - indicating a post-release patch ('p', 'pl', 'patch')
|
||||||
|
# but of course this can't cover all version number schemes, and there's
|
||||||
|
# no way to know what a programmer means without asking him.
|
||||||
|
#
|
||||||
|
# The problem is what to do with letters (and other non-numeric
|
||||||
|
# characters) in a version number. The current implementation does the
|
||||||
|
# obvious and predictable thing: keep them as strings and compare
|
||||||
|
# lexically within a tuple comparison. This has the desired effect if
|
||||||
|
# an appended letter sequence implies something "post-release":
|
||||||
|
# eg. "0.99" < "0.99pl14" < "1.0", and "5.001" < "5.001m" < "5.002".
|
||||||
|
#
|
||||||
|
# However, if letters in a version number imply a pre-release version,
|
||||||
|
# the "obvious" thing isn't correct. Eg. you would expect that
|
||||||
|
# "1.5.1" < "1.5.2a2" < "1.5.2", but under the tuple/lexical comparison
|
||||||
|
# implemented here, this just isn't so.
|
||||||
|
#
|
||||||
|
# Two possible solutions come to mind. The first is to tie the
|
||||||
|
# comparison algorithm to a particular set of semantic rules, as has
|
||||||
|
# been done in the StrictVersion class above. This works great as long
|
||||||
|
# as everyone can go along with bondage and discipline. Hopefully a
|
||||||
|
# (large) subset of Python module programmers will agree that the
|
||||||
|
# particular flavour of bondage and discipline provided by StrictVersion
|
||||||
|
# provides enough benefit to be worth using, and will submit their
|
||||||
|
# version numbering scheme to its domination. The free-thinking
|
||||||
|
# anarchists in the lot will never give in, though, and something needs
|
||||||
|
# to be done to accommodate them.
|
||||||
|
#
|
||||||
|
# Perhaps a "moderately strict" version class could be implemented that
|
||||||
|
# lets almost anything slide (syntactically), and makes some heuristic
|
||||||
|
# assumptions about non-digits in version number strings. This could
|
||||||
|
# sink into special-case-hell, though; if I was as talented and
|
||||||
|
# idiosyncratic as Larry Wall, I'd go ahead and implement a class that
|
||||||
|
# somehow knows that "1.2.1" < "1.2.2a2" < "1.2.2" < "1.2.2pl3", and is
|
||||||
|
# just as happy dealing with things like "2g6" and "1.13++". I don't
|
||||||
|
# think I'm smart enough to do it right though.
|
||||||
|
#
|
||||||
|
# In any case, I've coded the test suite for this module (see
|
||||||
|
# ../test/test_version.py) specifically to fail on things like comparing
|
||||||
|
# "1.2a2" and "1.2". That's not because the *code* is doing anything
|
||||||
|
# wrong, it's because the simple, obvious design doesn't match my
|
||||||
|
# complicated, hairy expectations for real-world version numbers. It
|
||||||
|
# would be a snap to fix the test suite to say, "Yep, LooseVersion does
|
||||||
|
# the Right Thing" (ie. the code matches the conception). But I'd rather
|
||||||
|
# have a conception that matches common notions about version numbers.
|
||||||
|
|
||||||
|
|
||||||
|
class LooseVersion(Version):
|
||||||
|
"""Version numbering for anarchists and software realists.
|
||||||
|
Implements the standard interface for version number classes as
|
||||||
|
described above. A version number consists of a series of numbers,
|
||||||
|
separated by either periods or strings of letters. When comparing
|
||||||
|
version numbers, the numeric components will be compared
|
||||||
|
numerically, and the alphabetic components lexically. The following
|
||||||
|
are all valid version numbers, in no particular order:
|
||||||
|
|
||||||
|
1.5.1
|
||||||
|
1.5.2b2
|
||||||
|
161
|
||||||
|
3.10a
|
||||||
|
8.02
|
||||||
|
3.4j
|
||||||
|
1996.07.12
|
||||||
|
3.2.pl0
|
||||||
|
3.1.1.6
|
||||||
|
2g6
|
||||||
|
11g
|
||||||
|
0.960923
|
||||||
|
2.2beta29
|
||||||
|
1.13++
|
||||||
|
5.5.kw
|
||||||
|
2.0b1pl0
|
||||||
|
|
||||||
|
In fact, there is no such thing as an invalid version number under
|
||||||
|
this scheme; the rules for comparison are simple and predictable,
|
||||||
|
but may not always give the results you want (for some definition
|
||||||
|
of "want").
|
||||||
|
"""
|
||||||
|
|
||||||
|
component_re = re.compile(r'(\d+ | [a-z]+ | \.)', re.VERBOSE)
|
||||||
|
|
||||||
|
def __init__(self, vstring=None):
|
||||||
|
if vstring:
|
||||||
|
self.parse(vstring)
|
||||||
|
|
||||||
|
def parse(self, vstring):
|
||||||
|
# I've given up on thinking I can reconstruct the version string
|
||||||
|
# from the parsed tuple -- so I just store the string here for
|
||||||
|
# use by __str__
|
||||||
|
self.vstring = vstring
|
||||||
|
components = [x for x in self.component_re.split(vstring) if x and x != '.']
|
||||||
|
for i, obj in enumerate(components):
|
||||||
|
try:
|
||||||
|
components[i] = int(obj)
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
self.version = components
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.vstring
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return "LooseVersion ('%s')" % str(self)
|
||||||
|
|
||||||
|
def _cmp(self, other):
|
||||||
|
if isinstance(other, str):
|
||||||
|
other = LooseVersion(other)
|
||||||
|
elif not isinstance(other, LooseVersion):
|
||||||
|
return NotImplemented
|
||||||
|
|
||||||
|
if self.version == other.version:
|
||||||
|
return 0
|
||||||
|
if self.version < other.version:
|
||||||
|
return -1
|
||||||
|
if self.version > other.version:
|
||||||
|
return 1
|
||||||
|
|
||||||
|
# end class LooseVersion
|
|
@ -2,7 +2,7 @@ from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version
|
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version
|
||||||
from distutils.version import LooseVersion
|
from ansible_collections.community.mysql.plugins.module_utils.version import LooseVersion
|
||||||
|
|
||||||
|
|
||||||
def uses_replica_terminology(cursor):
|
def uses_replica_terminology(cursor):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from distutils.version import LooseVersion
|
from ansible_collections.community.mysql.plugins.module_utils.version import LooseVersion
|
||||||
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version
|
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version
|
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version
|
||||||
from distutils.version import LooseVersion
|
from ansible_collections.community.mysql.plugins.module_utils.version import LooseVersion
|
||||||
|
|
||||||
|
|
||||||
def uses_replica_terminology(cursor):
|
def uses_replica_terminology(cursor):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
from distutils.version import LooseVersion
|
from ansible_collections.community.mysql.plugins.module_utils.version import LooseVersion
|
||||||
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version
|
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,10 @@ except ImportError:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
mysql_driver = None
|
mysql_driver = None
|
||||||
|
|
||||||
mysql_driver_fail_msg = 'The PyMySQL (Python 2.7 and Python 3.X) or MySQL-python (Python 2.X) module is required.'
|
mysql_driver_fail_msg = ('A MySQL module is required: for Python 2.7 either PyMySQL, or '
|
||||||
|
'MySQL-python, or for Python 3.X mysqlclient or PyMySQL. '
|
||||||
|
'Consider setting ansible_python_interpreter to use '
|
||||||
|
'the intended Python version.')
|
||||||
|
|
||||||
|
|
||||||
def parse_from_mysql_config_file(cnf):
|
def parse_from_mysql_config_file(cnf):
|
||||||
|
@ -79,7 +82,7 @@ def mysql_connect(module, login_user=None, login_password=None, config_file='',
|
||||||
if login_user is not None:
|
if login_user is not None:
|
||||||
config['user'] = login_user
|
config['user'] = login_user
|
||||||
if login_password is not None:
|
if login_password is not None:
|
||||||
config['password'] = login_password
|
config['passwd'] = login_password
|
||||||
if ssl_cert is not None:
|
if ssl_cert is not None:
|
||||||
config['ssl']['cert'] = ssl_cert
|
config['ssl']['cert'] = ssl_cert
|
||||||
if ssl_key is not None:
|
if ssl_key is not None:
|
||||||
|
@ -87,7 +90,7 @@ def mysql_connect(module, login_user=None, login_password=None, config_file='',
|
||||||
if ssl_ca is not None:
|
if ssl_ca is not None:
|
||||||
config['ssl']['ca'] = ssl_ca
|
config['ssl']['ca'] = ssl_ca
|
||||||
if db is not None:
|
if db is not None:
|
||||||
config['database'] = db
|
config['db'] = db
|
||||||
if connect_timeout is not None:
|
if connect_timeout is not None:
|
||||||
config['connect_timeout'] = connect_timeout
|
config['connect_timeout'] = connect_timeout
|
||||||
if check_hostname is not None:
|
if check_hostname is not None:
|
||||||
|
|
16
plugins/module_utils/version.py
Normal file
16
plugins/module_utils/version.py
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Copyright: (c) 2021, Felix Fontein <felix@fontein.de>
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
"""Provide version object to compare version numbers."""
|
||||||
|
|
||||||
|
from __future__ import absolute_import, division, print_function
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
# Once we drop support for ansible-core 2.11, we can
|
||||||
|
# remove the _version.py file, and replace the following import by
|
||||||
|
#
|
||||||
|
# from ansible.module_utils.compat.version import LooseVersion
|
||||||
|
|
||||||
|
from ._version import LooseVersion
|
|
@ -474,6 +474,9 @@ class MySQL_Info(object):
|
||||||
self.info['databases'][db['name']] = {}
|
self.info['databases'][db['name']] = {}
|
||||||
|
|
||||||
if not exclude_fields or 'db_size' not in exclude_fields:
|
if not exclude_fields or 'db_size' not in exclude_fields:
|
||||||
|
if db['size'] is None:
|
||||||
|
db['size'] = 0
|
||||||
|
|
||||||
self.info['databases'][db['name']]['size'] = int(db['size'])
|
self.info['databases'][db['name']]['size'] = int(db['size'])
|
||||||
|
|
||||||
# If empty dbs are not needed in the returned dict, exit from the method
|
# If empty dbs are not needed in the returned dict, exit from the method
|
||||||
|
|
|
@ -112,7 +112,7 @@ from ansible_collections.community.mysql.plugins.module_utils.mysql import (
|
||||||
)
|
)
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
|
|
||||||
DML_QUERY_KEYWORDS = ('INSERT', 'UPDATE', 'DELETE')
|
DML_QUERY_KEYWORDS = ('INSERT', 'UPDATE', 'DELETE', 'REPLACE')
|
||||||
# TRUNCATE is not DDL query but it also returns 0 rows affected:
|
# TRUNCATE is not DDL query but it also returns 0 rows affected:
|
||||||
DDL_QUERY_KEYWORDS = ('CREATE', 'DROP', 'ALTER', 'RENAME', 'TRUNCATE')
|
DDL_QUERY_KEYWORDS = ('CREATE', 'DROP', 'ALTER', 'RENAME', 'TRUNCATE')
|
||||||
|
|
||||||
|
|
|
@ -272,7 +272,7 @@ from ansible_collections.community.mysql.plugins.module_utils.mysql import (
|
||||||
mysql_common_argument_spec,
|
mysql_common_argument_spec,
|
||||||
)
|
)
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
from distutils.version import LooseVersion
|
from ansible_collections.community.mysql.plugins.module_utils.version import LooseVersion
|
||||||
|
|
||||||
executed_queries = []
|
executed_queries = []
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- "MySQL privileges string in the format: C(db.table:priv1,priv2)."
|
- "MySQL privileges string in the format: C(db.table:priv1,priv2)."
|
||||||
- "Multiple privileges can be specified by separating each one using
|
- "Multiple privileges can be specified by separating each one using
|
||||||
a forward slash: C(db.table:priv/db.table:priv)."
|
a forward slash: C(db.table1:priv/db.table2:priv)."
|
||||||
- The format is based on MySQL C(GRANT) statement.
|
- The format is based on MySQL C(GRANT) statement.
|
||||||
- Database and table names can be quoted, MySQL-style.
|
- Database and table names can be quoted, MySQL-style.
|
||||||
- If column privileges are used, the C(priv1,priv2) part must be
|
- If column privileges are used, the C(priv1,priv2) part must be
|
||||||
|
@ -53,6 +53,12 @@ options:
|
||||||
the module will always report changes. It includes grouping columns
|
the module will always report changes. It includes grouping columns
|
||||||
by permission (C(SELECT(col1,col2)) instead of C(SELECT(col1),SELECT(col2))).
|
by permission (C(SELECT(col1,col2)) instead of C(SELECT(col1),SELECT(col2))).
|
||||||
- Can be passed as a dictionary (see the examples).
|
- Can be passed as a dictionary (see the examples).
|
||||||
|
- Supports GRANTs for procedures and functions (see the examples).
|
||||||
|
- "Note: If you pass the same C(db.table) combination to this parameter
|
||||||
|
two or more times with different privileges,
|
||||||
|
for example, C('*.*:SELECT/*.*:SHOW VIEW'), only the last one will be applied,
|
||||||
|
in this example, it will be C(SHOW VIEW) respectively.
|
||||||
|
Use C('*.*:SELECT,SHOW VIEW') instead to apply both."
|
||||||
type: raw
|
type: raw
|
||||||
append_privs:
|
append_privs:
|
||||||
description:
|
description:
|
||||||
|
@ -188,6 +194,15 @@ EXAMPLES = r'''
|
||||||
'db1.*': 'ALL,GRANT'
|
'db1.*': 'ALL,GRANT'
|
||||||
'db2.*': 'ALL,GRANT'
|
'db2.*': 'ALL,GRANT'
|
||||||
|
|
||||||
|
# Use 'PROCEDURE' instead of 'FUNCTION' to apply GRANTs for a MySQL procedure instead.
|
||||||
|
- name: Grant a user the right to execute a function
|
||||||
|
community.mysql.mysql_user:
|
||||||
|
name: readonly
|
||||||
|
password: 12345
|
||||||
|
priv:
|
||||||
|
FUNCTION my_db.my_function: EXECUTE
|
||||||
|
state: present
|
||||||
|
|
||||||
# Note that REQUIRESSL is a special privilege that should only apply to *.* by itself.
|
# Note that REQUIRESSL is a special privilege that should only apply to *.* by itself.
|
||||||
# Setting this privilege in this manner is deprecated.
|
# Setting this privilege in this manner is deprecated.
|
||||||
# Use 'tls_requires' instead.
|
# Use 'tls_requires' instead.
|
||||||
|
@ -379,7 +394,7 @@ def sanitize_requires(tls_requires):
|
||||||
if tls_requires:
|
if tls_requires:
|
||||||
for key in tls_requires.keys():
|
for key in tls_requires.keys():
|
||||||
sanitized_requires[key.upper()] = tls_requires[key]
|
sanitized_requires[key.upper()] = tls_requires[key]
|
||||||
if any([key in ["CIPHER", "ISSUER", "SUBJECT"] for key in sanitized_requires.keys()]):
|
if any(key in ["CIPHER", "ISSUER", "SUBJECT"] for key in sanitized_requires.keys()):
|
||||||
sanitized_requires.pop("SSL", None)
|
sanitized_requires.pop("SSL", None)
|
||||||
sanitized_requires.pop("X509", None)
|
sanitized_requires.pop("X509", None)
|
||||||
return sanitized_requires
|
return sanitized_requires
|
||||||
|
@ -694,7 +709,10 @@ def user_delete(cursor, user, host, host_all, check_mode):
|
||||||
hostnames = [host]
|
hostnames = [host]
|
||||||
|
|
||||||
for hostname in hostnames:
|
for hostname in hostnames:
|
||||||
cursor.execute("DROP USER %s@%s", (user, hostname))
|
try:
|
||||||
|
cursor.execute("DROP USER IF EXISTS %s@%s", (user, hostname))
|
||||||
|
except Exception:
|
||||||
|
cursor.execute("DROP USER %s@%s", (user, hostname))
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -732,8 +750,19 @@ def privileges_get(cursor, user, host):
|
||||||
|
|
||||||
for grant in grants:
|
for grant in grants:
|
||||||
res = re.match("""GRANT (.+) ON (.+) TO (['`"]).*\\3@(['`"]).*\\4( IDENTIFIED BY PASSWORD (['`"]).+\\6)? ?(.*)""", grant[0])
|
res = re.match("""GRANT (.+) ON (.+) TO (['`"]).*\\3@(['`"]).*\\4( IDENTIFIED BY PASSWORD (['`"]).+\\6)? ?(.*)""", grant[0])
|
||||||
|
|
||||||
if res is None:
|
if res is None:
|
||||||
|
# If a user has roles assigned, we'll have one of priv tuples looking like
|
||||||
|
# GRANT `admin`@`%` TO `user1`@`localhost`
|
||||||
|
# which will result None as res value.
|
||||||
|
# As we use the mysql_role module (community.mysql 2.0.0+) to manipulate roles
|
||||||
|
# we just ignore such privs below:
|
||||||
|
res = re.match("""GRANT (.+) TO (['`"]).*""", grant[0])
|
||||||
|
if res:
|
||||||
|
continue
|
||||||
|
|
||||||
raise InvalidPrivsError('unable to parse the MySQL grant string: %s' % grant[0])
|
raise InvalidPrivsError('unable to parse the MySQL grant string: %s' % grant[0])
|
||||||
|
|
||||||
privileges = res.group(1).split(",")
|
privileges = res.group(1).split(",")
|
||||||
privileges = [pick(x.strip()) for x in privileges]
|
privileges = [pick(x.strip()) for x in privileges]
|
||||||
|
|
||||||
|
@ -934,6 +963,7 @@ def privileges_revoke(cursor, user, host, db_table, priv, grant_option):
|
||||||
query.append("FROM %s@%s")
|
query.append("FROM %s@%s")
|
||||||
query = ' '.join(query)
|
query = ' '.join(query)
|
||||||
cursor.execute(query, (user, host))
|
cursor.execute(query, (user, host))
|
||||||
|
cursor.execute("FLUSH PRIVILEGES")
|
||||||
|
|
||||||
|
|
||||||
def privileges_grant(cursor, user, host, db_table, priv, tls_requires):
|
def privileges_grant(cursor, user, host, db_table, priv, tls_requires):
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
dbdeployer_version: 1.52.0
|
dbdeployer_version: 1.64.0
|
||||||
dbdeployer_home_dir: /opt/dbdeployer
|
dbdeployer_home_dir: /opt/dbdeployer
|
||||||
|
|
||||||
home_dir: /root
|
home_dir: /root
|
||||||
|
|
|
@ -19,6 +19,7 @@ python_packages: [pymysql == 0.9.3]
|
||||||
install_prereqs:
|
install_prereqs:
|
||||||
- libaio1
|
- libaio1
|
||||||
- libnuma1
|
- libnuma1
|
||||||
|
- libncurses5
|
||||||
|
|
||||||
install_python_prereqs:
|
install_python_prereqs:
|
||||||
- python3-dev
|
- python3-dev
|
||||||
|
|
|
@ -191,3 +191,25 @@
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- include: issue-28.yml
|
- include: issue-28.yml
|
||||||
|
|
||||||
|
# https://github.com/ansible-collections/community.mysql/issues/204
|
||||||
|
- name: Create database containing only views
|
||||||
|
mysql_db:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: allviews
|
||||||
|
|
||||||
|
- name: Create view
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
login_db: allviews
|
||||||
|
query: 'CREATE VIEW v_today (today) AS SELECT CURRENT_DATE'
|
||||||
|
|
||||||
|
- name: Fetch info
|
||||||
|
mysql_info:
|
||||||
|
<<: *mysql_params
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Check
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
result.databases.allviews.size == 0
|
||||||
|
|
|
@ -7,6 +7,7 @@ test_db: testdb
|
||||||
test_table1: test1
|
test_table1: test1
|
||||||
test_table2: test2
|
test_table2: test2
|
||||||
test_table3: test3
|
test_table3: test3
|
||||||
|
test_table4: test4
|
||||||
test_script_path: /tmp/test.sql
|
test_script_path: /tmp/test.sql
|
||||||
|
|
||||||
user_name_1: 'db_user1'
|
user_name_1: 'db_user1'
|
||||||
|
|
|
@ -289,6 +289,38 @@
|
||||||
- result is failed
|
- result is failed
|
||||||
- result.msg is search('the elements in query list must be strings')
|
- result.msg is search('the elements in query list must be strings')
|
||||||
|
|
||||||
|
- name: Create {{ test_table4 }}
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
login_db: '{{ test_db }}'
|
||||||
|
query: 'CREATE TABLE {{ test_table4 }} (id int primary key, story text)'
|
||||||
|
|
||||||
|
- name: Insert test data using replace statement
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
login_db: '{{ test_db }}'
|
||||||
|
query: "REPLACE INTO {{ test_table4 }} VALUES (1, 'first')"
|
||||||
|
single_transaction: yes
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result is changed
|
||||||
|
- result.rowcount == [1]
|
||||||
|
|
||||||
|
- name: Replace test data
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
login_db: '{{ test_db }}'
|
||||||
|
query: "REPLACE INTO {{ test_table4 }} VALUES (1, 'one')"
|
||||||
|
single_transaction: yes
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- result is changed
|
||||||
|
- result.rowcount == [2]
|
||||||
|
|
||||||
- name: Drop db {{ test_db }}
|
- name: Drop db {{ test_db }}
|
||||||
mysql_query:
|
mysql_query:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
|
|
|
@ -282,3 +282,6 @@
|
||||||
- import_tasks: issue-64560.yaml
|
- import_tasks: issue-64560.yaml
|
||||||
tags:
|
tags:
|
||||||
- issue-64560
|
- issue-64560
|
||||||
|
|
||||||
|
# https://github.com/ansible-collections/community.mysql/issues/231
|
||||||
|
- include: test_user_grants_with_roles_applied.yml
|
||||||
|
|
|
@ -0,0 +1,98 @@
|
||||||
|
# https://github.com/ansible-collections/community.mysql/issues/231
|
||||||
|
- vars:
|
||||||
|
mysql_parameters: &mysql_params
|
||||||
|
login_user: '{{ mysql_user }}'
|
||||||
|
login_password: '{{ mysql_password }}'
|
||||||
|
login_host: 127.0.0.1
|
||||||
|
login_port: '{{ mysql_primary_port }}'
|
||||||
|
|
||||||
|
block:
|
||||||
|
- name: Get server version
|
||||||
|
mysql_info:
|
||||||
|
<<: *mysql_params
|
||||||
|
register: srv
|
||||||
|
|
||||||
|
# Skip unsupported versions
|
||||||
|
- meta: end_play
|
||||||
|
when: srv['version']['major'] < 8
|
||||||
|
|
||||||
|
- name: Create test databases
|
||||||
|
mysql_db:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: '{{ item }}'
|
||||||
|
state: present
|
||||||
|
loop:
|
||||||
|
- data1
|
||||||
|
- data2
|
||||||
|
|
||||||
|
- name: Create user with privileges
|
||||||
|
mysql_user:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: '{{ user_name_3 }}'
|
||||||
|
password: '{{ user_password_3 }}'
|
||||||
|
priv:
|
||||||
|
"data1.*": "SELECT"
|
||||||
|
"data2.*": "SELECT"
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Run command to show privileges for user (expect privileges in stdout)
|
||||||
|
command: "{{ mysql_command }} -e \"SHOW GRANTS FOR '{{ user_name_3 }}'@'localhost'\""
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Assert user has giving privileges
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "'GRANT SELECT ON `data1`.*' in result.stdout"
|
||||||
|
- "'GRANT SELECT ON `data2`.*' in result.stdout"
|
||||||
|
|
||||||
|
- name: Create role
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
query: CREATE ROLE IF NOT EXISTS test231
|
||||||
|
|
||||||
|
|
||||||
|
- name: Grant role
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
query: 'GRANT test231 TO {{ user_name_3 }}@localhost'
|
||||||
|
|
||||||
|
- name: Try to change privs
|
||||||
|
mysql_user:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: '{{ user_name_3 }}'
|
||||||
|
priv:
|
||||||
|
"data1.*": "INSERT"
|
||||||
|
"data2.*": "INSERT"
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Run command to show privileges for user (expect privileges in stdout)
|
||||||
|
command: "{{ mysql_command }} -e \"SHOW GRANTS FOR '{{ user_name_3 }}'@'localhost'\""
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Assert user has giving privileges
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "'GRANT INSERT ON `data1`.*' in result.stdout"
|
||||||
|
- "'GRANT INSERT ON `data2`.*' in result.stdout"
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Clean up
|
||||||
|
- name: Drop test databases
|
||||||
|
mysql_db:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: '{{ item }}'
|
||||||
|
state: present
|
||||||
|
loop:
|
||||||
|
- data1
|
||||||
|
- data2
|
||||||
|
|
||||||
|
- name: Drop test user
|
||||||
|
mysql_user:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: '{{ user_name_3 }}'
|
||||||
|
state: absent
|
||||||
|
|
||||||
|
- name: Drop test role
|
||||||
|
mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
query: DROP ROLE IF EXISTS test231
|
8
tests/sanity/ignore-2.13.txt
Normal file
8
tests/sanity/ignore-2.13.txt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
plugins/modules/mysql_db.py validate-modules:doc-elements-mismatch
|
||||||
|
plugins/modules/mysql_db.py validate-modules:parameter-list-no-elements
|
||||||
|
plugins/modules/mysql_db.py validate-modules:use-run-command-not-popen
|
||||||
|
plugins/modules/mysql_info.py validate-modules:doc-elements-mismatch
|
||||||
|
plugins/modules/mysql_info.py validate-modules:parameter-list-no-elements
|
||||||
|
plugins/modules/mysql_query.py validate-modules:parameter-list-no-elements
|
||||||
|
plugins/modules/mysql_user.py validate-modules:undocumented-parameter
|
||||||
|
plugins/modules/mysql_variables.py validate-modules:doc-required-mismatch
|
8
tests/sanity/ignore-2.14.txt
Normal file
8
tests/sanity/ignore-2.14.txt
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
plugins/modules/mysql_db.py validate-modules:doc-elements-mismatch
|
||||||
|
plugins/modules/mysql_db.py validate-modules:parameter-list-no-elements
|
||||||
|
plugins/modules/mysql_db.py validate-modules:use-run-command-not-popen
|
||||||
|
plugins/modules/mysql_info.py validate-modules:doc-elements-mismatch
|
||||||
|
plugins/modules/mysql_info.py validate-modules:parameter-list-no-elements
|
||||||
|
plugins/modules/mysql_query.py validate-modules:parameter-list-no-elements
|
||||||
|
plugins/modules/mysql_user.py validate-modules:undocumented-parameter
|
||||||
|
plugins/modules/mysql_variables.py validate-modules:doc-required-mismatch
|
Loading…
Add table
Add a link
Reference in a new issue