1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

influxdb_user: Don't grant admin privilege in check mode (#26)

influxdb_user module don't change the admin flag for existing
user

Fixes: ansible/ansible#68139

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2020-03-30 15:38:50 +05:30 committed by GitHub
parent 027ffcae56
commit cc2b1e7b6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -235,10 +235,12 @@ def main():
try:
if admin and not user['admin']:
client.grant_admin_privileges(user_name)
if not module.check_mode:
client.grant_admin_privileges(user_name)
changed = True
elif not admin and user['admin']:
client.revoke_admin_privileges(user_name)
if not module.check_mode:
client.revoke_admin_privileges(user_name)
changed = True
except influx.exceptions.InfluxDBClientError as e:
module.fail_json(msg=to_native(e))