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 * post-install: ignore errors from syspatch
* nagios-nrpe: grep in check_ipsecctl_critiques.sh was too large * nagios-nrpe: grep in check_ipsecctl_critiques.sh was too large
* post-install: fix missing space in generateldif.sh script * post-install: fix missing space in generateldif.sh script
* logsentry: fix variables for configuration files
### Removed ### Removed

View file

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