aboutsummaryrefslogtreecommitdiffstats
path: root/roles/_workstation/cronie/tasks/main.yml
blob: 28d2e6f0cf1d70e85f7529a9c64673335b44a751 (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 start cronie
  ansible.builtin.service:
    name: cronie
    state: started
    enabled: true
remember that computers suck.