Merge pull request #12795 from chrismeyersfsu/fix-test_destructive_mysql_user
remove module param quotes
This commit is contained in:
commit
9b22004540
1 changed files with 2 additions and 2 deletions
|
@ -23,9 +23,9 @@
|
|||
|
||||
- include: assert_user.yml user_name={{user_name_2}} priv='SELECT'
|
||||
when: current_append_privs == "yes"
|
||||
|
||||
|
||||
- name: create user with current privileges (expect changed=true)
|
||||
mysql_user: name={{ user_name_2 }} password={{ user_password_2 }} priv=*.*:'{{current_privilege}}' append_privs={{current_append_privs}} state=present
|
||||
mysql_user: name={{ user_name_2 }} password={{ user_password_2 }} priv=*.*:{{current_privilege}} append_privs={{current_append_privs}} state=present
|
||||
register: result
|
||||
|
||||
- name: assert output message for current privileges
|
||||
|
|
Loading…
Reference in a new issue