2020-12-02 18:40:25 +01:00
|
|
|
- name: Prepare
|
|
|
|
hosts: all
|
|
|
|
gather_facts: no
|
|
|
|
|
|
|
|
tasks:
|
2020-12-25 18:41:34 +01:00
|
|
|
- name: Update APT cache
|
2020-12-02 18:40:25 +01:00
|
|
|
raw: apt update
|
|
|
|
|
2020-12-25 18:41:34 +01:00
|
|
|
- name: Install Python3 package
|
|
|
|
raw: apt install -y --no-install-recommends python3
|
|
|
|
|
|
|
|
- name: Install cron package
|
|
|
|
package:
|
|
|
|
name: cron
|
|
|
|
state: present
|