[tests] Work around vixie-cron and PAM issue, el6
Change: - This works around an issue that causes the cron test to fail sometimes on el6. Test Plan: - ansible-test integration cron --docker centos6 Signed-off-by: Rick Elrod <rick@elrod.me>
This commit is contained in:
parent
9f1513d4c0
commit
698eae3f3d
1 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=726661
|
||||
- name: Work around vixie-cron/PAM issue on old distros
|
||||
command: sed -i '/pam_loginuid/ s/^/#/' /etc/pam.d/crond
|
||||
when:
|
||||
- ansible_distribution in ('RedHat', 'CentOS')
|
||||
- ansible_distribution_major_version is version('6', '==')
|
||||
|
||||
- name: add cron task (check mode enabled, cron task not already created)
|
||||
cron:
|
||||
name: test cron task
|
||||
|
|
Loading…
Reference in a new issue