ansible-roles/evocheck/tasks/cron.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

19 lines
407 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
check_mode: no
register: is_cron_installed
- name: evocheck crontab is updated
template:
src: crontab.j2
dest: /etc/cron.d/evocheck
mode: "0644"
owner: root
group: root
force: yes
when: is_cron_installed.rc == 0