mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
11 lines
348 B
YAML
Executable File
11 lines
348 B
YAML
Executable File
- block:
|
|
- name: Reconfigure config
|
|
ansible.builtin.lineinfile:
|
|
path: /etc/sysctl.conf
|
|
regexp: "^Unet.ipv4.igmp_max_memberships.*"
|
|
line: "net.ipv4.igmp_max_memberships = 75"
|
|
- name: Restart agent
|
|
ansible.builtin.shell: echo 76 > /proc/sys/net/ipv4/igmp_max_memberships
|
|
notify: restart_matter_server
|
|
become: true
|