summaryrefslogtreecommitdiffstats
path: root/molecule/git/converge.yml
blob: 8354d3ce58a4c63eff1452dc0cde954e679ec085 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: "Proxy configure"
  gather_facts: true
  hosts:
    - proxy.home.arpa
  vars:
    network_ipv4_address: "{{ ansible_facts['default_ipv4']['address'] }}"
    proxy_type: "caddy"
  roles:
    - role: "proxy"

- name: "Git configure"
  gather_facts: true
  hosts:
    - git.home.arpa
  vars:
    network_ipv4_address: "{{ ansible_facts['default_ipv4']['address'] }}"
    cgit_proxy_host: "proxy.home.arpa"
  roles:
    - role: "cgit"