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_babeld/tasks/main.yml

19 lines
326 B
YAML

---
- name: install babeld
pacman:
name: babeld
state: present
- name: babeld.conf
template:
src: babeld.conf.j2
dest: /etc/babeld.conf
mode: 0640
notify: restart babeld
- name: start and enable babeld service
systemd:
name: babeld.service
enabled: yes
state: started