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.
ansible/roles/iproute2/tasks/main.yml

13 lines
234 B
YAML

---
- name: Configure custom tables and protos
template:
src: "{{ item }}.j2"
dest: "/etc/iproute2/{{ item }}.d/custom.conf"
owner: root
group: root
mode: u=rw,g=r,o=r
loop:
- rt_tables
- rt_protos
...