summaryrefslogtreecommitdiff
path: root/roles/install_cronie/tasks/main.yml
blob: 97a2ca831727ac4adcbf8f6a19025f0cf1356a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
---
- name: install cronie
  pacman:
      name: cronie
      state: present

- name: start and enable cronie
  systemd:
      name: cronie.service
      enabled: yes
      state: started