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.
22 lines
463 B
YAML
22 lines
463 B
YAML
---
|
|
- name: load batman-adv kernel module at boot
|
|
copy:
|
|
src: modules-load.d_batman.conf
|
|
dest: /etc/modules-load.d/batman.conf
|
|
|
|
- name: load batman-adv kernel module
|
|
modprobe:
|
|
name: batman-adv
|
|
state: present
|
|
|
|
- name: install batctl
|
|
pacman:
|
|
name: batctl
|
|
state: present
|
|
|
|
- name: add batman netctl config for sites
|
|
template:
|
|
src: netctl_bat.j2
|
|
dest: "/etc/netctl/bat{{ item.name }}"
|
|
with_items: "{{ sites }}"
|