Compare commits

...

3 Commits

Author SHA1 Message Date
uumas
728a57347d v0.5.20 2026-03-15 22:27:04 +02:00
uumas
6abb365090 Fix typo 2026-03-15 22:26:00 +02:00
uumas
20a4e1d582 caddy: Set udp request buffers in sysctl 2026-03-15 22:00:14 +02:00
3 changed files with 12 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
namespace: uumas namespace: uumas
name: general name: general
description: General roles description: General roles
version: 0.5.19 version: 0.5.20
readme: README.md readme: README.md
authors: authors:
- uumas - uumas

View File

@@ -1,4 +1,14 @@
--- ---
- name: Set sysctl udp buffer sizes for caddy
ansible.posix.sysctl:
name: "{{ item.key }}"
value: "{{ item.value }}"
state: present
reload: true
with_dict:
net.core.rmem_max: "7500000"
net.core.wmem_max: "7500000"
- name: Ensure legacy caddy apt repository not present - name: Ensure legacy caddy apt repository not present
ansible.builtin.file: ansible.builtin.file:
path: /etc/apt/sources.list.d/caddy-stable.list path: /etc/apt/sources.list.d/caddy-stable.list

View File

@@ -9,6 +9,6 @@
changed_when: true changed_when: true
- name: Reset systemd restart units - name: Reset systemd restart units
listen: Apply systemd units restart listen: Apply systemd unit restarts
ansible.builtin.set_fact: ansible.builtin.set_fact:
systemd_restart_units: [] systemd_restart_units: []