mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-09-30 05:23:25 -07:00
mysql_db: change pipefail default as true (#734)
* mysql_db: change pipefail default as true * Fix CI * major -> breaking in changelog
This commit is contained in:
parent
96828579ac
commit
451f7e617d
3 changed files with 6 additions and 4 deletions
|
@ -160,10 +160,8 @@ options:
|
|||
description:
|
||||
- Use C(bash) instead of C(sh) and add C(-o pipefail) to catch errors from the
|
||||
mysql_dump command when I(state=dump) and compression is used.
|
||||
- The default is C(no) to prevent issues on systems without bash as a default interpreter.
|
||||
- The default will change to C(yes) in community.mysql 4.0.0.
|
||||
type: bool
|
||||
default: false
|
||||
default: true
|
||||
version_added: '3.4.0'
|
||||
sql_log_bin:
|
||||
description:
|
||||
|
@ -637,7 +635,7 @@ def main():
|
|||
check_implicit_admin=dict(type='bool', default=False),
|
||||
config_overrides_defaults=dict(type='bool', default=False),
|
||||
chdir=dict(type='path'),
|
||||
pipefail=dict(type='bool', default=False),
|
||||
pipefail=dict(type='bool', default=True),
|
||||
sql_log_bin=dict(type='bool', default=True),
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue