blob: 3f5189482c5e7b66e2ed6795b2295a51756d60d7 (
plain) (
tree)
|
|
# network ~~ playbooks/network.yml
# common network configuration
---
- hosts: localhost
gather_facts: no
roles:
- { role: sshdns }
- hosts: all
gather_facts: no
roles:
- { role: wireguard }
- hosts: servers
roles:
- { role: dns }
- { role: sshd }
- hosts: dc0
roles:
- { role: pf }
- { role: relayd }
|