ansible-roles/logstash/tasks/logs.yml
Jérémy Lecour 4d83f25ae6
All checks were successful
continuous-integration/drone/push Build is passing
fix pipefail option for shell invocations
2021-05-18 14:04:54 +02:00

19 lines
448 B
YAML

---
- name: Check if cron is installed
shell: "set -o pipefail && dpkg -l cron 2> /dev/null | grep -q -E '^(i|h)i'"
args:
executable: /bin/bash
check_mode: no
failed_when: False
changed_when: False
register: is_cron_installed
- name: "log rotation script"
template:
src: rotate_logstash_logs.j2
dest: /etc/cron.daily/rotate_logstash_logs
owner: root
group: root
mode: "0750"
when: is_cron_installed.rc == 0