mirror of
https://github.com/DO1JLR/ansible_linux_desktop_setup.git
synced 2024-09-14 19:54:51 +02:00
12 lines
259 B
YAML
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'
|