24 lines
604 B
YAML
24 lines
604 B
YAML
|
#!/usr/bin/env ansible-playbook
|
||
|
---
|
||
|
# Déploiement du service re2o aurore-firewall et keepalived
|
||
|
# radvd: IPv6 SLAAC (/64 subnets, private IPs).
|
||
|
# Must NOT be on routeur-aurore-*, or will with DHCPv6!
|
||
|
- hosts: ~routeur-(pacaterie|edc|fleming|gs|rives).*\.adm\.auro\.re
|
||
|
vars:
|
||
|
update_motd:
|
||
|
unbound: Le routage (avec radvd) est déployé.
|
||
|
roles:
|
||
|
- router
|
||
|
- radvd
|
||
|
- update_motd
|
||
|
|
||
|
# No radvd here
|
||
|
- hosts: ~routeur-aurore.*\.adm\.auro\.re
|
||
|
vars:
|
||
|
update_motd:
|
||
|
unbound: Le routage (avec DHCPv6) est déployé.
|
||
|
roles:
|
||
|
- router
|
||
|
- ipv6_edge_router
|
||
|
- update_motd
|