Advertisement
Guest User

Untitled

a guest
May 3rd, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. - name: Updating Root Password
  2. mysql_user:
  3. name: root
  4. host: "{{ item }}"
  5. password: "{{ mysql_root_password }}"
  6. priv: "*.*:ALL,GRANT"
  7. with_items:
  8. - 127.0.0.1
  9. - ::1
  10. - localhost
  11. - "%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement