You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffmyk-ansible/roles/install_cronie/tasks/main.yml

12 lines
188 B
YAML

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