aboutsummaryrefslogtreecommitdiffstats
path: root/roles/workstation/tasks/cronie.yml
blob: faa109525f8bfd4ec1040664650ce66c5f0c2ce0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
- 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.