1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_linux_desktop_setup.git synced 2024-09-14 19:54:51 +02:00
ansible_linux_desktop_setup/roles/openvpn/tasks/modprobe.yml
2023-10-28 23:19:14 +02:00

12 lines
259 B
YAML

---
- name: Add the tun module # noqa: H1901
become: true
community.general.modprobe:
name: 'tun'
state: 'present'
- name: Add the bridge module # noqa: H1901
become: true
community.general.modprobe:
name: 'bridge'
state: 'present'