Ansible repo for digital ocean projects
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

27 righe
496 B

  1. - hosts: do
  2. remote_user: root
  3. gather_facts: false
  4. vars:
  5. ansible_python_interpreter: /usr/bin/python3
  6. tasks:
  7. - name: wait for port 22 to become available
  8. wait_for:
  9. host: "{{ inventory_hostname }}"
  10. port: 22
  11. delegate_to: localhost
  12. - name: Gather Facts
  13. setup:
  14. - name: install nginx
  15. apt:
  16. name: nginx
  17. - name: modify html file
  18. template:
  19. src: ./index.html.j2
  20. dest: /var/www/html/index.html