diff options
Diffstat (limited to 'roles/workstation/tasks/cronie.yml')
-rw-r--r-- | roles/workstation/tasks/cronie.yml | 10 |
1 files changed, 10 insertions, 0 deletions
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 |