Ansible configuration for PiFrame devices -- used by PiFrameFleet for fleet management
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--- |
|
- hosts: all |
|
become: yes |
|
roles: |
|
- wireguard |
|
tasks: |
|
- name: Setup wireguard as trusted network |
|
firewalld: |
|
zone: trusted |
|
immediate: yes |
|
interface: wg0 |
|
permanent: yes |
|
state: enabled |
|
when: "'frames' in group_names"
|
|
|