Ansible repo for digital ocean projects
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526
  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