feat: setup syslog for alpine

This commit is contained in:
Simon Cornet 2026-04-05 18:45:09 +02:00
commit dc43fc80cd
3 changed files with 19 additions and 0 deletions

View file

@ -48,6 +48,13 @@
enabled: true
state: "restarted"
# ensure syslog enabled + started - alpine
- name: "restart syslog alpine"
ansible.builtin.service:
name: "syslog"
enabled: true
state: "started"
# ssh
- name: "restart ssh"
ansible.builtin.systemd: