aboutsummaryrefslogtreecommitdiffstats
path: root/roles/_workstation/cronie/tasks/main.yml
blob: d39abf3bb7091a9ddf633ed36a48860324ba53dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---

- name: install cronie
  ansible.builtin.package:
    name: cronie
    state: present

- name: enable and restart cronie
  ansible.builtin.service:
    name: cronie
    state: restarted
    enabled: true
remember that computers suck.