diff --git a/playbooks/sysctl.yml b/playbooks/sysctl.yml new file mode 100644 index 0000000..e3ac33f --- /dev/null +++ b/playbooks/sysctl.yml @@ -0,0 +1,11 @@ +- 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 \ No newline at end of file