From 1d568c91672791f3495e04fe7a962255a0b9f1c1 Mon Sep 17 00:00:00 2001 From: Felix Hamme Date: Fri, 27 May 2022 13:59:30 +0200 Subject: [PATCH] mysql_role: fix syntax in example --- plugins/modules/mysql_role.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/mysql_role.py b/plugins/modules/mysql_role.py index 593aeb6..d07016a 100644 --- a/plugins/modules/mysql_role.py +++ b/plugins/modules/mysql_role.py @@ -260,7 +260,7 @@ EXAMPLES = r''' 'db1.*': DELETE - name: add some members to a role and skip not-existent users - community.mysql.mysql_role: + community.mysql.mysql_role: state: present name: foo append_members: yes @@ -270,7 +270,7 @@ EXAMPLES = r''' - 'not_existing_user@localhost' - name: detach some members from a role and ignore not-existent users - community.mysql.mysql_role: + community.mysql.mysql_role: state: present name: foo detach_members: yes