mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
move one if statement to module initialiazation
This commit is contained in:
parent
ef058c4714
commit
642d87a121
2 changed files with 1 additions and 6 deletions
|
@ -430,7 +430,7 @@ def main():
|
|||
session_vars=dict(type='dict'),
|
||||
column_case_sensitive=dict(type='bool', default=None), # TODO 4.0.0 add default=True
|
||||
password_expire=dict(type='str', choices=['now', 'never', 'default', 'interval']),
|
||||
password_expire_interval=dict(type='int'),
|
||||
password_expire_interval=dict(type='int', required_if=[('password_expire', 'interval', True)]),
|
||||
)
|
||||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
|
@ -479,10 +479,6 @@ def main():
|
|||
if mysql_driver is None:
|
||||
module.fail_json(msg=mysql_driver_fail_msg)
|
||||
|
||||
if password_expire == "interval" and not password_expire_interval:
|
||||
module.fail_json(msg="password_expire value interval \
|
||||
should be used with password_expire_interval")
|
||||
|
||||
if password_expire_interval and password_expire_interval < 1:
|
||||
module.fail_json(msg="password_expire_interval value \
|
||||
should be positive number")
|
||||
|
|
|
@ -132,7 +132,6 @@
|
|||
ansible.builtin.assert:
|
||||
that:
|
||||
- result is failed
|
||||
- "'should be used with' in result.msg"
|
||||
|
||||
- name: password_expire | Set password_expire_interval < 1
|
||||
community.mysql.mysql_user:
|
||||
|
|
Loading…
Add table
Reference in a new issue