diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-10-22 15:14:03 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-10-22 15:14:03 +0200 |
commit | 10d932c6f645e2cf4331ffb249882b9fe8f0e547 (patch) | |
tree | 555235f0351f6d8dd613fca598d0dd3064be3a4b /roles/workstation/tasks/cronie.yml | |
parent | c8de512a98462327b909311d2f89c90c32fb9246 (diff) | |
download | rules-10d932c6f645e2cf4331ffb249882b9fe8f0e547.tar.gz |
roles(workstation): add cronie task
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 |