summaryrefslogtreecommitdiff
path: root/roles/install_babeld/tasks/main.yml
blob: a8299da347b5b7dbacfc22777be31439d081975f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- name: install fastd
  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