Guest User

Untitled

a guest
Apr 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. ---
  2.  
  3. - hosts: lamp
  4. become: yes
  5. become_user: root
  6. become_method: sudo
  7. gather_facts: False
  8. pre_tasks:
  9. - name: install python
  10. raw: apt -y update && apt install -y python-minimal
  11. - setup:
  12.  
  13. # Specifico i Roles che ho scaricato utilizzando
  14. # ansible-galaxy install geerlingguy.mysql geerlingguy.apache geerlingguy.php
  15. roles:
  16. - geerlingguy.mysql
  17. - geerlingguy.apache
  18. - geerlingguy.php
Add Comment
Please, Sign In to add comment