Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. - name: Add MySQL users
  2. mysql_user:
  3. name: {{ list1.name }}
  4. password: {{ list1.password }}
  5. state: {{ list1.state }}
  6. priv: {{ list1.priv }}
  7. host: {{ list2.host }}
  8. with_items:
  9. - "{{list1}}"
  10. - "{{list2}}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement