move one if statement to module initialiazation

This commit is contained in:
Tomas 2024-02-20 23:25:31 +02:00
parent ef058c4714
commit 642d87a121
2 changed files with 1 additions and 6 deletions

View file

@ -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")

View file

@ -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: