mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-08 07:04:23 -07:00
parent
4727fb77b3
commit
eff25c8a6e
28 changed files with 187 additions and 157 deletions
|
@ -25,10 +25,10 @@
|
|||
- name: install cron package
|
||||
package:
|
||||
name: '{{ cron_pkg }}'
|
||||
when: cron_pkg | default(false, true)
|
||||
when: (cron_pkg | default(false, true)) is truthy
|
||||
register: cron_package_installed
|
||||
until: cron_package_installed is success
|
||||
- when: faketime_pkg | default(false, true)
|
||||
- when: (faketime_pkg | default(false, true)) is truthy
|
||||
block:
|
||||
- name: install cron and faketime packages
|
||||
package:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue