Docs: change yes/no to true/false (#480) (#481)

(cherry picked from commit 3ff1fad5f3)
This commit is contained in:
Andrew Klychkov 2023-01-03 12:56:27 +01:00 committed by GitHub
parent 335ce76f82
commit e4fc4bdf06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 43 additions and 43 deletions

View file

@ -53,12 +53,12 @@ options:
description: description:
- Execute the dump in a single transaction. - Execute the dump in a single transaction.
type: bool type: bool
default: no default: false
quick: quick:
description: description:
- Option used for dumping large tables. - Option used for dumping large tables.
type: bool type: bool
default: yes default: true
ignore_tables: ignore_tables:
description: description:
- A list of table names that will be ignored in the dump - A list of table names that will be ignored in the dump
@ -70,14 +70,14 @@ options:
description: description:
- Dump binary columns using hexadecimal notation. - Dump binary columns using hexadecimal notation.
type: bool type: bool
default: no default: false
version_added: '0.1.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.
- Used only when I(state) is C(dump) or C(import). - Used only when I(state) is C(dump) or C(import).
type: bool type: bool
default: no default: false
version_added: '0.1.0' version_added: '0.1.0'
master_data: master_data:
description: description:
@ -96,7 +96,7 @@ options:
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.
type: bool type: bool
default: no default: false
version_added: '0.1.0' version_added: '0.1.0'
dump_extra_args: dump_extra_args:
description: description:
@ -110,7 +110,7 @@ options:
- If C(yes), the module will internally execute commands via a shell. - If C(yes), the module will internally execute commands via a shell.
- Used when I(state=import), ignored otherwise. - Used when I(state=import), ignored otherwise.
type: bool type: bool
default: no default: false
version_added: '0.1.0' version_added: '0.1.0'
unsafe_login_password: unsafe_login_password:
description: description:
@ -121,7 +121,7 @@ options:
- Used only when I(state) is C(import) or C(dump) and - Used only when I(state) is C(import) or C(dump) and
I(login_password) is passed, ignored otherwise. I(login_password) is passed, ignored otherwise.
type: bool type: bool
default: no default: false
version_added: '0.1.0' version_added: '0.1.0'
restrict_config_file: restrict_config_file:
description: description:
@ -132,14 +132,14 @@ options:
under the hood that read named option file in addition to usual option files. under the hood that read named option file in addition to usual option files.
- 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: false
version_added: '0.1.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: false
version_added: '0.1.0' version_added: '0.1.0'
config_overrides_defaults: config_overrides_defaults:
description: description:
@ -148,7 +148,7 @@ options:
- Used when I(stat) is C(present) or C(absent), ignored otherwise. - Used when I(stat) is C(present) or C(absent), ignored otherwise.
- 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: false
version_added: '0.1.0' version_added: '0.1.0'
seealso: seealso:
@ -215,7 +215,7 @@ EXAMPLES = r'''
name: my_db name: my_db
state: import state: import
target: /tmp/dump.sql.bz2 target: /tmp/dump.sql.bz2
force: yes force: true
- name: Dump multiple databases - name: Dump multiple databases
community.mysql.mysql_db: community.mysql.mysql_db:
@ -287,7 +287,7 @@ EXAMPLES = r'''
- name: Try to create database as root/nopassword first. If not allowed, pass the credentials - name: Try to create database as root/nopassword first. If not allowed, pass the credentials
community.mysql.mysql_db: community.mysql.mysql_db:
check_implicit_admin: yes check_implicit_admin: true
login_user: bob login_user: bob
login_password: 123456 login_password: 123456
name: bobdata name: bobdata

View file

@ -42,7 +42,7 @@ options:
description: description:
- Includes names of empty databases to returned dictionary. - Includes names of empty databases to returned dictionary.
type: bool type: bool
default: no default: false
notes: notes:
- Calculating the size of a database might be slow, depending on the number and size of tables in it. - Calculating the size of a database might be slow, depending on the number and size of tables in it.
@ -96,14 +96,14 @@ EXAMPLES = r'''
filter: "!settings,!users" filter: "!settings,!users"
- name: Collect info about databases and version using ~/.my.cnf as a credential file - name: Collect info about databases and version using ~/.my.cnf as a credential file
become: yes become: true
community.mysql.mysql_info: community.mysql.mysql_info:
filter: filter:
- databases - databases
- version - version
- name: Collect info about databases and version using ~alice/.my.cnf as a credential file - name: Collect info about databases and version using ~alice/.my.cnf as a credential file
become: yes become: true
community.mysql.mysql_info: community.mysql.mysql_info:
config_file: /home/alice/.my.cnf config_file: /home/alice/.my.cnf
filter: filter:
@ -111,13 +111,13 @@ EXAMPLES = r'''
- version - version
- name: Collect info about databases including empty and excluding their sizes - name: Collect info about databases including empty and excluding their sizes
become: yes become: true
community.mysql.mysql_info: community.mysql.mysql_info:
config_file: /home/alice/.my.cnf config_file: /home/alice/.my.cnf
filter: filter:
- databases - databases
exclude_fields: db_size exclude_fields: db_size
return_empty_dbs: yes return_empty_dbs: true
''' '''
RETURN = r''' RETURN = r'''

View file

@ -27,7 +27,7 @@ options:
the state has been changed even if it has not. If it is important in your the state has been changed even if it has not. If it is important in your
workflow, use the C(PyMySQL) connector instead. workflow, use the C(PyMySQL) connector instead.
type: raw type: raw
required: yes required: true
positional_args: positional_args:
description: description:
- List of values to be passed as positional arguments to the query. - List of values to be passed as positional arguments to the query.
@ -46,7 +46,7 @@ options:
description: description:
- Where passed queries run in a single transaction (C(yes)) or commit them one-by-one (C(no)). - Where passed queries run in a single transaction (C(yes)) or commit them one-by-one (C(no)).
type: bool type: bool
default: no default: false
seealso: seealso:
- module: community.mysql.mysql_db - module: community.mysql.mysql_db
author: author:
@ -87,7 +87,7 @@ EXAMPLES = r'''
query: query:
- INSERT INTO articles (id, story) VALUES (2, 'my_long_story') - INSERT INTO articles (id, story) VALUES (2, 'my_long_story')
- INSERT INTO prices (id, price) VALUES (123, '100.00') - INSERT INTO prices (id, price) VALUES (123, '100.00')
single_transaction: yes single_transaction: true
''' '''
RETURN = r''' RETURN = r'''

View file

@ -188,7 +188,7 @@ options:
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.1.0' version_added: '0.1.0'
notes: notes:
@ -267,12 +267,12 @@ EXAMPLES = r'''
community.mysql.mysql_replication: community.mysql.mysql_replication:
mode: startreplica mode: startreplica
connection_name: primary-1 connection_name: primary-1
fail_on_error: yes fail_on_error: true
- name: Change primary and fail on error (like when replica thread is running) - name: Change primary and fail on error (like when replica thread is running)
community.mysql.mysql_replication: community.mysql.mysql_replication:
mode: changeprimary mode: changeprimary
fail_on_error: yes fail_on_error: true
''' '''

View file

@ -53,7 +53,7 @@ options:
- Append the privileges defined by the I(priv) option to the existing ones - Append the privileges defined by the I(priv) option to the existing ones
for this role instead of overwriting them. for this role instead of overwriting them.
type: bool type: bool
default: no default: false
members: members:
description: description:
@ -71,7 +71,7 @@ options:
for this role instead of overwriting them. for this role instead of overwriting them.
- Mutually exclusive with the I(detach_members) and I(admin) option. - Mutually exclusive with the I(detach_members) and I(admin) option.
type: bool type: bool
default: no default: false
detach_members: detach_members:
description: description:
@ -79,7 +79,7 @@ options:
instead of overwriting all the current members. instead of overwriting all the current members.
- Mutually exclusive with the I(append_members) and I(admin) option. - Mutually exclusive with the I(append_members) and I(admin) option.
type: bool type: bool
default: no default: false
set_default_role_all: set_default_role_all:
description: description:
@ -87,7 +87,7 @@ options:
- If C(yes), runs B(SET DEFAULT ROLE ALL TO) each of the I(members) when changed. - If C(yes), runs B(SET DEFAULT ROLE ALL TO) each of the I(members) when changed.
- If you want to avoid this behavior, set this option to C(no) explicitly. - If you want to avoid this behavior, set this option to C(no) explicitly.
type: bool type: bool
default: yes default: true
state: state:
description: description:
@ -103,7 +103,7 @@ options:
- 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: false
notes: notes:
- Pay attention that the module runs C(SET DEFAULT ROLE ALL TO) - Pay attention that the module runs C(SET DEFAULT ROLE ALL TO)
@ -165,7 +165,7 @@ EXAMPLES = r'''
members: members:
- 'alice@%' - 'alice@%'
- 'bob@%' - 'bob@%'
set_default_role_all: no set_default_role_all: false
# Assuming that the role developers exists, # Assuming that the role developers exists,
# add john to the current members # add john to the current members
@ -173,7 +173,7 @@ EXAMPLES = r'''
community.mysql.mysql_role: community.mysql.mysql_role:
name: developers name: developers
state: present state: present
append_members: yes append_members: true
members: members:
- 'joe@localhost' - 'joe@localhost'
@ -192,7 +192,7 @@ EXAMPLES = r'''
name: readers name: readers
state: present state: present
priv: 'fiction.*:UPDATE' priv: 'fiction.*:UPDATE'
append_privs: yes append_privs: true
- name: Create role with the 'SELECT' and 'UPDATE' privileges in db1 and db2 - name: Create role with the 'SELECT' and 'UPDATE' privileges in db1 and db2
community.mysql.mysql_role: community.mysql.mysql_role:
@ -208,7 +208,7 @@ EXAMPLES = r'''
name: readers name: readers
members: members:
- 'joe@localhost' - 'joe@localhost'
detach_members: yes detach_members: true
- name: Remove the role readers if exists - name: Remove the role readers if exists
community.mysql.mysql_role: community.mysql.mysql_role:

View file

@ -29,7 +29,7 @@ options:
description: description:
- Indicate that the 'password' field is a `mysql_native_password` hash. - Indicate that the 'password' field is a `mysql_native_password` hash.
type: bool type: bool
default: no default: false
host: host:
description: description:
- The 'host' part of the MySQL username. - The 'host' part of the MySQL username.
@ -41,7 +41,7 @@ options:
to all hostnames for a given user. to all hostnames for a given user.
- This option cannot be used when creating users. - This option cannot be used when creating users.
type: bool type: bool
default: no default: false
priv: priv:
description: description:
- "MySQL privileges string in the format: C(db.table:priv1,priv2)." - "MySQL privileges string in the format: C(db.table:priv1,priv2)."
@ -66,7 +66,7 @@ options:
- Append the privileges defined by priv to the existing ones for this - Append the privileges defined by priv to the existing ones for this
user instead of overwriting existing ones. user instead of overwriting existing ones.
type: bool type: bool
default: no default: false
tls_requires: tls_requires:
description: description:
- Set requirement for secure transport as a dictionary of requirements (see the examples). - Set requirement for secure transport as a dictionary of requirements (see the examples).
@ -79,7 +79,7 @@ options:
description: description:
- Whether binary logging should be enabled or disabled for the connection. - Whether binary logging should be enabled or disabled for the connection.
type: bool type: bool
default: yes default: true
state: state:
description: description:
- Whether the user should exist. - Whether the user should exist.
@ -92,7 +92,7 @@ options:
- 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: false
update_password: update_password:
description: description:
- C(always) will update passwords if they differ. This affects I(password) and the combination of I(plugin), I(plugin_hash_string), I(plugin_auth_string). - C(always) will update passwords if they differ. This affects I(password) and the combination of I(plugin), I(plugin_hash_string), I(plugin_auth_string).
@ -164,7 +164,7 @@ EXAMPLES = r'''
- name: Removes all anonymous user accounts - name: Removes all anonymous user accounts
community.mysql.mysql_user: community.mysql.mysql_user:
name: '' name: ''
host_all: yes host_all: true
state: absent state: absent
- name: Create database user with name 'bob' and password '12345' with all database privileges - name: Create database user with name 'bob' and password '12345' with all database privileges
@ -178,7 +178,7 @@ EXAMPLES = r'''
community.mysql.mysql_user: community.mysql.mysql_user:
name: bob name: bob
password: '*EE0D72C1085C46C5278932678FBE2C6A782821B4' password: '*EE0D72C1085C46C5278932678FBE2C6A782821B4'
encrypted: yes encrypted: true
priv: '*.*:ALL' priv: '*.*:ALL'
state: present state: present
@ -249,7 +249,7 @@ EXAMPLES = r'''
If mysql allows root/nopassword login, try it without the credentials first. If mysql allows root/nopassword login, try it without the credentials first.
If it's not allowed, pass the credentials If it's not allowed, pass the credentials
community.mysql.mysql_user: community.mysql.mysql_user:
check_implicit_admin: yes check_implicit_admin: true
login_user: root login_user: root
login_password: 123456 login_password: 123456
name: sally name: sally
@ -258,7 +258,7 @@ EXAMPLES = r'''
- name: Ensure no user named 'sally' exists at all - name: Ensure no user named 'sally' exists at all
community.mysql.mysql_user: community.mysql.mysql_user:
name: sally name: sally
host_all: yes host_all: true
state: absent state: absent
- name: Specify grants composed of more than one word - name: Specify grants composed of more than one word
@ -290,7 +290,7 @@ EXAMPLES = r'''
password: 12345 password: 12345
priv: "*.*:USAGE" priv: "*.*:USAGE"
state: present state: present
sql_log_bin: no sql_log_bin: false
- name: Create user 'bob' authenticated with plugin 'AWSAuthenticationPlugin' - name: Create user 'bob' authenticated with plugin 'AWSAuthenticationPlugin'
community.mysql.mysql_user: community.mysql.mysql_user:

View file

@ -22,7 +22,7 @@ options:
description: description:
- Variable name to operate. - Variable name to operate.
type: str type: str
required: yes required: true
value: value:
description: description:
- If set, then sets variable value to this. - If set, then sets variable value to this.