Advertisement
Guest User

Untitled

a guest
May 2nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ---
  2. - name: Secure installation and database creation
  3. hosts: ansible2-merrick
  4. become: true
  5. tasks:
  6. - name: Remove the test database
  7. mysql_db:
  8. name: test
  9. login_user: root
  10. login_password: "NET#265"
  11. state: absent
  12. tags: mariadb
  13.  
  14. - name: Create database
  15. mysql_db:
  16. name: "wordpress"
  17. login_user: root
  18. login_password: "NET#265"
  19. state: present
  20. with_items: "wordpress"
  21. register: db_creation
  22. tags: mariadb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement