aboutsummaryrefslogblamecommitdiffstats
path: root/roles/_workstation/cronie/tasks/main.yml
blob: d39abf3bb7091a9ddf633ed36a48860324ba53dd (plain) (tree)
1
2
3
4
5
6
7
8
9

   
                      
                          



                                 
                          


                    
---

- 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.