fixed grammatical issue in iam.py. exit -> exist.
This commit is contained in:
parent
a21ea16d47
commit
593e74cfc5
1 changed files with 1 additions and 1 deletions
|
@ -663,7 +663,7 @@ def main():
|
||||||
|
|
||||||
elif state == 'update' and not user_exists:
|
elif state == 'update' and not user_exists:
|
||||||
module.fail_json(
|
module.fail_json(
|
||||||
msg="The user %s does not exit. No update made." % name)
|
msg="The user %s does not exist. No update made." % name)
|
||||||
|
|
||||||
elif state == 'absent':
|
elif state == 'absent':
|
||||||
if user_exists:
|
if user_exists:
|
||||||
|
|
Loading…
Reference in a new issue