first commit

This commit is contained in:
ansible user
2025-07-21 10:47:59 +02:00
commit f7e76e9748
71 changed files with 1727 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
---
- name: Install vlan
apt:
name:
- vlan
state: latest
- name: modprobe 8021q
command: modprobe 8021q
become: yes
- name: adding 8021q to /etc/modules
lineinfile:
path: /etc/modules
line: 8021q
state: present
create: true
become: yes