aboutsummaryrefslogtreecommitdiffstats
path: root/roles/workstation/tasks/cronie.yml
blob: 1ac0042c016f0141ae956b154c3a5280ae490078 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
- name: install cronie
  package:
    name: cronie
    state: present

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