logsentry: fix variables for configuration files

This commit is contained in:
Jérémy Dubois 2023-02-16 16:40:53 +01:00
parent e7ff98662f
commit 60fd0e1e38
2 changed files with 4 additions and 3 deletions

View file

@ -66,6 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* post-install: ignore errors from syspatch
* nagios-nrpe: grep in check_ipsecctl_critiques.sh was too large
* post-install: fix missing space in generateldif.sh script
* logsentry: fix variables for configuration files
### Removed

View file

@ -20,13 +20,13 @@
- name: "Copy custom logsentry configuration files"
copy:
src: "{{ item }}"
dest: /etc/logsentry/"{{ item}}"
dest: "/etc/logsentry/{{ item }}"
owner: root
group: wheel
mode: "0600"
with_items:
- "logsentry.ignore"
- "logsentry.violations.ignore"
- logsentry.ignore
- logsentry.violations.ignore
tags:
- logsentry
- logsentry-config