forked from FreiFunkMuenster/ansible-ffms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gateways.yml
27 lines (27 loc) · 1.49 KB
/
gateways.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
- hosts: gateways
remote_user: root
roles:
- { role: hostname, tags: "hostname"}
- { role: common, tags: "common"}
- { role: backports-kernel, tags: "backports-kernel"}
- { role: net_netfilter, tags: "net_netfilter"}
- { role: tunearpcache, tags: "tunearpcache"}
- { role: ip_forwarding, tags: "ip_forwarding"}
- { role: iptables, tags: "iptables", when: ffrl_tun is defined }
- { role: backbone_gre_ffrl, tags: "backbone_gre_ffrl"}
- { role: backbone_gre_ffms, tags: "backbone_gre_ffms"}
- { role: gateways_gre, tags: "gateways_gre"}
- { role: gateways_batman, tags: "gateways_batman"}
- { role: gateways_gretap, tags: "gateways_gretap"}
- { role: gateways_l2tp, tags: "gateways_l2tp"}
- { role: bird, tags: "bird"}
- { role: gateways_dhcp, tags: "gateways_dhcp"}
- { role: gateways_bind, tags: "gateways_bind", when: "'dhcp_type' not in hostvars[inventory_hostname] or dhcp_type == 'bind'"}
- { role: collectd, tags: "collectd"}
# - { role: kea_postgres, tags: "kea_postgres"}
- { role: gateways_kea_build, tags: "gateways_kea_build", when: "'dhcp_type' in hostvars[inventory_hostname] and dhcp_type == 'kea'"}
- { role: gateways_kea_configure, tags: "gateways_kea_configure", when: "'dhcp_type' in hostvars[inventory_hostname] and dhcp_type == 'kea'"}
- { role: py_respondd, tags: "py_respondd"}
# - { role: set_kernel_param_maxcpus, tags: "set_kernel_param_maxcpus"}
- { role: unattended_upgrades, tags: "unattended_upgrades"}