feat: setup syslog for alpine
This commit is contained in:
parent
4426ba1cb7
commit
dc43fc80cd
3 changed files with 19 additions and 0 deletions
|
|
@ -5,6 +5,17 @@
|
|||
tags: "syslog"
|
||||
block:
|
||||
|
||||
# configure syslog - alpine
|
||||
- name: "syslog - config - busybox - alpine"
|
||||
ansible.builtin.template:
|
||||
src: "templates/syslog/busybox/syslog.alpine.j2"
|
||||
dest: "/etc/conf.d/syslog"
|
||||
owner: "root"
|
||||
group: "root"
|
||||
mode: "0644"
|
||||
when: 'ansible_distribution == "Alpine"'
|
||||
notify: "restart syslog alpine"
|
||||
|
||||
# configure rsyslogd - debian
|
||||
- name: "syslog - config - rsyslog - debian"
|
||||
ansible.builtin.template:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue