ansible-roles/elasticsearch/tasks/logs.yml
Jérémy Lecour e65340cb56
All checks were successful
continuous-integration/drone/push Build is passing
Add pipefail option to shell invocations
2021-05-13 15:34:27 +02:00

17 lines
408 B
YAML

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