Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions roles/common/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@

- name: install yum-cron
yum: name=yum-cron state=present
register: yum_cron_install
tags: common

- name: extend root filesystem from 2g to 3g
Expand All @@ -160,4 +161,9 @@
service: name=yum-cron state=started enabled=yes
tags: common

- name: re-install cronie after setting up yum-cron (locking errors)
shell: yum reinstall -y cronie
when: yum_cron_install is changed
tags: common

...