Compare commits
3 Commits
97d7fab538
...
728a57347d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
728a57347d | ||
|
|
6abb365090 | ||
|
|
20a4e1d582 |
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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: []
|
||||||
|
|||||||
Reference in New Issue
Block a user