Adjust version_added to 0.1.0, which comes closer to the truth.

This commit is contained in:
Felix Fontein 2020-07-10 18:40:57 +02:00
parent 04d093dcbd
commit 0868943e57
6 changed files with 26 additions and 26 deletions

View file

@ -73,7 +73,7 @@ options:
required: no required: no
default: no default: no
type: bool type: bool
version_added: '0.2.0' version_added: '0.1.0'
force: force:
description: description:
- Continue dump or import even if we get an SQL error. - Continue dump or import even if we get an SQL error.
@ -81,7 +81,7 @@ options:
required: no required: no
type: bool type: bool
default: no default: no
version_added: '0.2.0' version_added: '0.1.0'
master_data: master_data:
description: description:
- Option to dump a master replication server to produce a dump file - Option to dump a master replication server to produce a dump file
@ -95,21 +95,21 @@ options:
type: int type: int
choices: [0, 1, 2] choices: [0, 1, 2]
default: 0 default: 0
version_added: '0.2.0' version_added: '0.1.0'
skip_lock_tables: skip_lock_tables:
description: description:
- Skip locking tables for read. Used when I(state=dump), ignored otherwise. - Skip locking tables for read. Used when I(state=dump), ignored otherwise.
required: no required: no
type: bool type: bool
default: no default: no
version_added: '0.2.0' version_added: '0.1.0'
dump_extra_args: dump_extra_args:
description: description:
- Provide additional arguments for mysqldump. - Provide additional arguments for mysqldump.
Used when I(state=dump) only, ignored otherwise. Used when I(state=dump) only, ignored otherwise.
required: no required: no
type: str type: str
version_added: '0.2.0' version_added: '0.1.0'
use_shell: use_shell:
description: description:
- Used to prevent C(Broken pipe) errors when the imported I(target) file is compressed. - Used to prevent C(Broken pipe) errors when the imported I(target) file is compressed.
@ -118,7 +118,7 @@ options:
required: no required: no
type: bool type: bool
default: no default: no
version_added: '0.2.0' version_added: '0.1.0'
unsafe_login_password: unsafe_login_password:
description: description:
- If C(no), the module will safely use a shell-escaped version of the I(login_password) value. - If C(no), the module will safely use a shell-escaped version of the I(login_password) value.
@ -126,7 +126,7 @@ options:
- Used only when I(state) is C(import) or C(dump) and I(login_password) is passed, ignored otherwise. - Used only when I(state) is C(import) or C(dump) and I(login_password) is passed, ignored otherwise.
type: bool type: bool
default: no default: no
version_added: '0.2.0' version_added: '0.1.0'
restrict_config_file: restrict_config_file:
description: description:
- Read only passed I(config_file). - Read only passed I(config_file).
@ -136,14 +136,14 @@ options:
- If this behavior is undesirable, use C(yes) to read only named option file. - If this behavior is undesirable, use C(yes) to read only named option file.
type: bool type: bool
default: no default: no
version_added: '0.2.0' version_added: '0.1.0'
check_implicit_admin: check_implicit_admin:
description: description:
- Check if mysql allows login as root/nopassword before trying supplied credentials. - Check if mysql allows login as root/nopassword before trying supplied credentials.
- If success, passed I(login_user)/I(login_password) will be ignored. - If success, passed I(login_user)/I(login_password) will be ignored.
type: bool type: bool
default: no default: no
version_added: '0.2.0' version_added: '0.1.0'
config_overrides_defaults: config_overrides_defaults:
description: description:
- If C(yes), connection parameters from I(config_file) will override the default - If C(yes), connection parameters from I(config_file) will override the default
@ -152,7 +152,7 @@ options:
- It needs Python 3.5+ as the default interpreter on a target host. - It needs Python 3.5+ as the default interpreter on a target host.
type: bool type: bool
default: no default: no
version_added: '0.2.0' version_added: '0.1.0'
seealso: seealso:
- module: community.mysql.mysql_info - module: community.mysql.mysql_info
@ -309,7 +309,7 @@ executed_commands:
returned: if executed returned: if executed
type: list type: list
sample: ["CREATE DATABASE acme"] sample: ["CREATE DATABASE acme"]
version_added: '0.2.0' version_added: '0.1.0'
''' '''
import os import os

View file

@ -37,7 +37,7 @@ options:
- "Supports elements: C(db_size). Unsupported elements will be ignored" - "Supports elements: C(db_size). Unsupported elements will be ignored"
type: list type: list
elements: str elements: str
version_added: '0.2.0' version_added: '0.1.0'
return_empty_dbs: return_empty_dbs:
description: description:
- Includes names of empty databases to returned dictionary. - Includes names of empty databases to returned dictionary.

View file

@ -15,7 +15,7 @@ description:
- Runs arbitrary MySQL queries. - Runs arbitrary MySQL queries.
- Pay attention, the module does not support check mode! - Pay attention, the module does not support check mode!
All queries will be executed in autocommit mode. All queries will be executed in autocommit mode.
version_added: '0.2.0' version_added: '0.1.0'
options: options:
query: query:
description: description:

View file

@ -28,7 +28,7 @@ options:
C(getslave) (SHOW SLAVE STATUS), C(getslave) (SHOW SLAVE STATUS),
C(startslave) (START SLAVE), C(startslave) (START SLAVE),
C(stopslave) (STOP SLAVE), C(stopslave) (STOP SLAVE),
C(resetmaster) (RESET MASTER) - supported since community.mysql 0.2.0, C(resetmaster) (RESET MASTER) - supported since community.mysql 0.1.0,
C(resetslave) (RESET SLAVE), C(resetslave) (RESET SLAVE),
C(resetslaveall) (RESET SLAVE ALL). C(resetslaveall) (RESET SLAVE ALL).
type: str type: str
@ -115,14 +115,14 @@ options:
- Available since MariaDB 10.0.2. - Available since MariaDB 10.0.2.
choices: [current_pos, slave_pos, disabled] choices: [current_pos, slave_pos, disabled]
type: str type: str
version_added: '0.2.0' version_added: '0.1.0'
master_delay: master_delay:
description: description:
- Time lag behind the master's state (in seconds). - Time lag behind the master's state (in seconds).
- Available from MySQL 5.6. - Available from MySQL 5.6.
- For more information see U(https://dev.mysql.com/doc/refman/8.0/en/replication-delayed.html). - For more information see U(https://dev.mysql.com/doc/refman/8.0/en/replication-delayed.html).
type: int type: int
version_added: '0.2.0' version_added: '0.1.0'
connection_name: connection_name:
description: description:
- Name of the master connection. - Name of the master connection.
@ -130,7 +130,7 @@ options:
- Mutually exclusive with I(channel). - Mutually exclusive with I(channel).
- For more information see U(https://mariadb.com/kb/en/library/multi-source-replication/). - For more information see U(https://mariadb.com/kb/en/library/multi-source-replication/).
type: str type: str
version_added: '0.2.0' version_added: '0.1.0'
channel: channel:
description: description:
- Name of replication channel. - Name of replication channel.
@ -138,13 +138,13 @@ options:
- Mutually exclusive with I(connection_name). - Mutually exclusive with I(connection_name).
- For more information see U(https://dev.mysql.com/doc/refman/8.0/en/replication-multi-source.html). - For more information see U(https://dev.mysql.com/doc/refman/8.0/en/replication-multi-source.html).
type: str type: str
version_added: '0.2.0' version_added: '0.1.0'
fail_on_error: fail_on_error:
description: description:
- Fails on error when calling mysql. - Fails on error when calling mysql.
type: bool type: bool
default: False default: False
version_added: '0.2.0' version_added: '0.1.0'
notes: notes:
- If an empty value for the parameter of string type is needed, use an empty string. - If an empty value for the parameter of string type is needed, use an empty string.
@ -231,7 +231,7 @@ queries:
returned: always returned: always
type: list type: list
sample: ["CHANGE MASTER TO MASTER_HOST='master2.example.com',MASTER_PORT=3306"] sample: ["CHANGE MASTER TO MASTER_HOST='master2.example.com',MASTER_PORT=3306"]
version_added: '0.2.0' version_added: '0.1.0'
''' '''
import os import os

View file

@ -89,17 +89,17 @@ options:
description: description:
- User's plugin to authenticate (``CREATE USER user IDENTIFIED WITH plugin``). - User's plugin to authenticate (``CREATE USER user IDENTIFIED WITH plugin``).
type: str type: str
version_added: '0.2.0' version_added: '0.1.0'
plugin_hash_string: plugin_hash_string:
description: description:
- User's plugin hash string (``CREATE USER user IDENTIFIED WITH plugin AS plugin_hash_string``). - User's plugin hash string (``CREATE USER user IDENTIFIED WITH plugin AS plugin_hash_string``).
type: str type: str
version_added: '0.2.0' version_added: '0.1.0'
plugin_auth_string: plugin_auth_string:
description: description:
- User's plugin auth_string (``CREATE USER user IDENTIFIED WITH plugin BY plugin_auth_string``). - User's plugin auth_string (``CREATE USER user IDENTIFIED WITH plugin BY plugin_auth_string``).
type: str type: str
version_added: '0.2.0' version_added: '0.1.0'
resource_limits: resource_limits:
description: description:
- Limit the user for certain server resources. Provided since MySQL 5.6 / MariaDB 10.2. - Limit the user for certain server resources. Provided since MySQL 5.6 / MariaDB 10.2.
@ -107,7 +107,7 @@ options:
C(MAX_CONNECTIONS_PER_HOUR: num), C(MAX_USER_CONNECTIONS: num)." C(MAX_CONNECTIONS_PER_HOUR: num), C(MAX_USER_CONNECTIONS: num)."
- Used when I(state=present), ignored otherwise. - Used when I(state=present), ignored otherwise.
type: dict type: dict
version_added: '0.2.0' version_added: '0.1.0'
notes: notes:
- "MySQL server installs with default login_user of 'root' and no password. To secure this user - "MySQL server installs with default login_user of 'root' and no password. To secure this user

View file

@ -42,7 +42,7 @@ options:
type: str type: str
choices: ['global', 'persist', 'persist_only'] choices: ['global', 'persist', 'persist_only']
default: global default: global
version_added: '0.2.0' version_added: '0.1.0'
seealso: seealso:
- module: community.mysql.mysql_info - module: community.mysql.mysql_info
@ -73,7 +73,7 @@ queries:
returned: if executed returned: if executed
type: list type: list
sample: ["SET GLOBAL `read_only` = 1"] sample: ["SET GLOBAL `read_only` = 1"]
version_added: '0.2.0' version_added: '0.1.0'
''' '''
import os import os