From 10d932c6f645e2cf4331ffb249882b9fe8f0e547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Sat, 22 Oct 2022 15:14:03 +0200 Subject: roles(workstation): add cronie task --- roles/workstation/tasks/cronie.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 roles/workstation/tasks/cronie.yml (limited to 'roles/workstation/tasks/cronie.yml') diff --git a/roles/workstation/tasks/cronie.yml b/roles/workstation/tasks/cronie.yml new file mode 100644 index 0000000..1ac0042 --- /dev/null +++ b/roles/workstation/tasks/cronie.yml @@ -0,0 +1,10 @@ +- name: install cronie + package: + name: cronie + state: present + +- name: enable and restart cronie + service: + name: cronie + state: restarted + enabled: true -- cgit v1.2.3