Ansible repo for digital ocean projects
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- - hosts: do
- remote_user: root
- gather_facts: false
-
- vars:
- ansible_python_interpreter: /usr/bin/python3
-
- tasks:
- - name: wait for port 22 to become available
- wait_for:
- host: "{{ inventory_hostname }}"
- port: 22
- delegate_to: localhost
-
- - name: Gather Facts
- setup:
-
- - name: install nginx
- apt:
- name: nginx
-
- - name: modify html file
- template:
- src: ./index.html.j2
- dest: /var/www/html/index.html
|