diff options
Diffstat (limited to 'roles/setup_batman/tasks')
-rw-r--r-- | roles/setup_batman/tasks/main.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/roles/setup_batman/tasks/main.yml b/roles/setup_batman/tasks/main.yml new file mode 100644 index 0000000..c3e8372 --- /dev/null +++ b/roles/setup_batman/tasks/main.yml @@ -0,0 +1,26 @@ +--- +- name: load batman-adv kernel module at boot + copy: + src: modules-load.d_batman.conf + dest: /etc/modules-load.d/batman.conf + +- 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 |