Files
2026-06-06 15:02:55 +01:00

11 lines
295 B
YAML

- name: modify kernel attributes
hosts: wireguard
become: true
tasks:
- name: create wireguard specific entry in sysctl.d
ansible.builtin.copy:
src: ../configs/sysctl
dest: /etc/sysctl.d/99-wireguard.conf
owner: root
group: root
mode: 0644