Ansible repo for digital ocean projects
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
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