Fix crontab errors on CentOS/SUSE

CentOS comes with a default empty crontab file that is fine for
most deployers. It also lacks the `--report` option for `run-parts`
that Ubuntu has.

SUSE doesn't have run-parts at all.

This causes the server administrator to receive emails with errors
from cron on a regular basis. This patch limits the crontab
deployment to Ubuntu only and skips CentOS/SUSE hosts.

Closes-Bug: 1732762
Change-Id: Iba714e1e20e1a27b1a5bb58a714dee3916faba8f
(cherry picked from commit c4d12eba1b)
This commit is contained in:
Major Hayden 2017-11-17 08:14:21 -06:00
parent 3e295f95f5
commit 765cbc2ba0
1 changed files with 2 additions and 0 deletions

View File

@ -20,3 +20,5 @@
owner: "root"
group: "root"
mode: "0644"
when:
- ansible_os_family == 'Debian'