1
0
Fork 0
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) (#4444)

* ensure creation of /etc/cron.d in test

* fixed typo

(cherry picked from commit 9e0ff8ba4b)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2022-04-03 10:54:44 +02:00 committed by GitHub
parent e89648a114
commit 47aa93d970
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,82 +3,84 @@
# 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
- name: Create EMAIL cron var state: directory
- name: Create EMAIL cron var
cronvar: cronvar:
name: EMAIL name: EMAIL
value: doug@ansibmod.con.com value: doug@ansibmod.con.com
register: create_cronvar1 register: create_cronvar1
- name: Create EMAIL cron var again - name: Create EMAIL cron var again
cronvar: cronvar:
name: EMAIL name: EMAIL
value: doug@ansibmod.con.com value: doug@ansibmod.con.com
register: create_cronvar2 register: create_cronvar2
- name: Check cron var value - name: Check cron var value
shell: crontab -l -u root | grep -c EMAIL=doug@ansibmod.con.com shell: crontab -l -u root | grep -c EMAIL=doug@ansibmod.con.com
register: varcheck1 register: varcheck1
- name: Modify EMAIL cron var - name: Modify EMAIL cron var
cronvar: cronvar:
name: EMAIL name: EMAIL
value: jane@ansibmod.con.com value: jane@ansibmod.con.com
register: create_cronvar3 register: create_cronvar3
- name: Check cron var value again - name: Check cron var value again
shell: crontab -l -u root | grep -c EMAIL=jane@ansibmod.con.com shell: crontab -l -u root | grep -c EMAIL=jane@ansibmod.con.com
register: varcheck2 register: varcheck2
- name: Remove EMAIL cron var - name: Remove EMAIL cron var
cronvar: cronvar:
name: EMAIL name: EMAIL
state: absent state: absent
register: remove_cronvar1 register: remove_cronvar1
- name: Remove EMAIL cron var again - name: Remove EMAIL cron var again
cronvar: cronvar:
name: EMAIL name: EMAIL
state: absent state: absent
register: remove_cronvar2 register: remove_cronvar2
- name: Check cron var value again - name: Check cron var value again
shell: crontab -l -u root | grep -c EMAIL shell: crontab -l -u root | grep -c EMAIL
register: varcheck3 register: varcheck3
failed_when: varcheck3.rc == 0 failed_when: varcheck3.rc == 0
- name: Add cron var to custom file - name: Add cron var to custom file
cronvar: cronvar:
name: TESTVAR name: TESTVAR
value: somevalue value: somevalue
cron_file: cronvar_test cron_file: cronvar_test
register: custom_cronfile1 register: custom_cronfile1
- name: Add cron var to custom file again - name: Add cron var to custom file again
cronvar: cronvar:
name: TESTVAR name: TESTVAR
value: somevalue value: somevalue
cron_file: cronvar_test cron_file: cronvar_test
register: custom_cronfile2 register: custom_cronfile2
- name: Check cron var value in custom file - name: Check cron var value in custom file
command: grep -c TESTVAR=somevalue {{ cron_config_path }}/cronvar_test command: grep -c TESTVAR=somevalue {{ cron_config_path }}/cronvar_test
register: custom_varcheck1 register: custom_varcheck1
- name: Change cron var in custom file - name: Change cron var in custom file
cronvar: cronvar:
name: TESTVAR name: TESTVAR
value: newvalue value: newvalue
cron_file: cronvar_test cron_file: cronvar_test
register: custom_cronfile3 register: custom_cronfile3
- name: Check cron var value in custom file - name: Check cron var value in custom file
command: grep -c TESTVAR=newvalue {{ cron_config_path }}/cronvar_test command: grep -c TESTVAR=newvalue {{ cron_config_path }}/cronvar_test
register: custom_varcheck2 register: custom_varcheck2
- name: Remove cron var from custom file - name: Remove cron var from custom file
cronvar: cronvar:
name: TESTVAR name: TESTVAR
value: newvalue value: newvalue
@ -86,7 +88,7 @@
state: absent state: absent
register: custom_remove_cronvar1 register: custom_remove_cronvar1
- name: Remove cron var from custom file again - name: Remove cron var from custom file again
cronvar: cronvar:
name: TESTVAR name: TESTVAR
value: newvalue value: newvalue
@ -94,12 +96,12 @@
state: absent state: absent
register: custom_remove_cronvar2 register: custom_remove_cronvar2
- name: Check cron var value - name: Check cron var value
command: grep -c TESTVAR=newvalue {{ cron_config_path }}/cronvar_test command: grep -c TESTVAR=newvalue {{ cron_config_path }}/cronvar_test
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