diff options
| author | ansible-zuul[bot] <48994755+ansible-zuul[bot]@users.noreply.github.com> | 2019-11-01 16:50:54 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-01 16:50:54 +0000 | 
| commit | 76497f9ee8b04d2cd65c0bd85886a0099221992a (patch) | |
| tree | 14a9aab09c3a6ce1d72d0be19a5a5e80e5bc9297 /plugins/modules/vyos_user.py | |
| parent | 3b241d1bec8f8aeabe39c41f14493db397d82dbe (diff) | |
| parent | 884ae8b96e2f4951a1fded8a947936da46e614c3 (diff) | |
| download | vyos.vyos-76497f9ee8b04d2cd65c0bd85886a0099221992a.tar.gz vyos.vyos-76497f9ee8b04d2cd65c0bd85886a0099221992a.zip | |
Merge pull request #44 from CaptTrews/ansible/collections-sync-master
Updated from network content collector
Reviewed-by: https://github.com/apps/ansible-zuul
Diffstat (limited to 'plugins/modules/vyos_user.py')
| -rw-r--r-- | plugins/modules/vyos_user.py | 10 | 
1 files changed, 1 insertions, 9 deletions
| diff --git a/plugins/modules/vyos_user.py b/plugins/modules/vyos_user.py index eb71c583..5a766eea 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) | 
