94cb21daad
- Update Readme - Update ansible.cfg - Add playbook to set up gateways - Add group variables
18 lines
405 B
YAML
18 lines
405 B
YAML
---
|
|
- name: install batman-module and linux headers
|
|
apt:
|
|
state: present
|
|
name: "{{ item }}"
|
|
update_cache: yes
|
|
cache_valid_time: 21600
|
|
with_items:
|
|
- linux-headers-amd64
|
|
- batman-adv-dkms
|
|
- batctl
|
|
become: true
|
|
|
|
- name: configure batman module to load on system boot
|
|
template:
|
|
src: batman-adv.module.conf.j2
|
|
dest: /etc/modules-load.d/batman-adv.conf
|
|
become: true
|