2017-09-05 12:01:27 +02:00
|
|
|
---
|
|
|
|
- name: install batman-module and linux headers
|
2017-10-11 17:53:20 +02:00
|
|
|
package:
|
2018-09-16 12:38:33 +02:00
|
|
|
name: "{{ batman_packages }}"
|
2017-10-11 17:53:20 +02:00
|
|
|
state: present
|
2017-09-05 12:01:27 +02:00
|
|
|
|
|
|
|
- name: configure batman module to load on system boot
|
|
|
|
template:
|
|
|
|
src: batman-adv.module.conf.j2
|
|
|
|
dest: /etc/modules-load.d/batman-adv.conf
|
2017-10-02 11:21:01 +02:00
|
|
|
|
2017-11-12 14:35:11 +01:00
|
|
|
- name: load batman module
|
2017-10-02 11:21:01 +02:00
|
|
|
modprobe:
|
2017-11-12 14:35:11 +01:00
|
|
|
name: "batman-adv"
|
2017-10-02 11:21:01 +02:00
|
|
|
state: present
|