summaryrefslogtreecommitdiff
path: root/plugins/modules/vyos_user.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/modules/vyos_user.py')
-rw-r--r--plugins/modules/vyos_user.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/plugins/modules/vyos_user.py b/plugins/modules/vyos_user.py
index eb71c58..5a766ee 100644
--- a/plugins/modules/vyos_user.py
+++ b/plugins/modules/vyos_user.py
@@ -326,15 +326,7 @@ def main():
)
warnings = list()
- if module.params["password"] and not module.params["configured_password"]:
- warnings.append(
- 'The "password" argument is used to authenticate the current connection. '
- + 'To set a user password use "configured_password" instead.'
- )
-
- result = {"changed": False}
- if warnings:
- result["warnings"] = warnings
+ result = {"changed": False, "warnings": warnings}
want = map_params_to_obj(module)
have = config_to_dict(module)