mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
cronvar: ensure creation of /etc/cron.d in test (#4440)
* ensure creation of /etc/cron.d in test * fixed typo
This commit is contained in:
parent
bd83490b45
commit
9e0ff8ba4b
1 changed files with 98 additions and 96 deletions
|
@ -3,9 +3,11 @@
|
||||||
# and should not be used as examples of how to write Ansible roles #
|
# and should not be used as examples of how to write Ansible roles #
|
||||||
####################################################################
|
####################################################################
|
||||||
|
|
||||||
- when:
|
- name: Ensure /etc/cron.d directory exists
|
||||||
- not (ansible_os_family == 'Alpine' and ansible_distribution_version is version('3.15', '<')) # TODO
|
file:
|
||||||
block:
|
path: /etc/cron.d
|
||||||
|
state: directory
|
||||||
|
|
||||||
- name: Create EMAIL cron var
|
- name: Create EMAIL cron var
|
||||||
cronvar:
|
cronvar:
|
||||||
name: EMAIL
|
name: EMAIL
|
||||||
|
@ -99,7 +101,7 @@
|
||||||
register: custom_varcheck3
|
register: custom_varcheck3
|
||||||
failed_when: custom_varcheck3.rc == 0
|
failed_when: custom_varcheck3.rc == 0
|
||||||
|
|
||||||
- name: Esure cronvar tasks did the right thing
|
- name: Ensure cronvar tasks did the right thing
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- create_cronvar1 is changed
|
- create_cronvar1 is changed
|
||||||
|
|
Loading…
Reference in a new issue