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.
|
|
|
---
|
|
|
|
- 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: name ffmyk routing table
|
|
|
|
lineinfile:
|
|
|
|
path: /etc/iproute2/rt_tables
|
|
|
|
line: 42 ffmyk
|
|
|
|
|
|
|
|
- name: copy ffmyk iproute config script
|
|
|
|
copy:
|
|
|
|
src: ffmyk-iproute.sh
|
|
|
|
dest: /usr/local/bin/ffmyk-iproute.sh
|
|
|
|
mode: 0744
|
|
|
|
|
|
|
|
- name: add netctl config
|
|
|
|
template:
|
|
|
|
src: netctl_bat0.j2
|
|
|
|
dest: /etc/netctl/bat0
|