1234567891011121314151617181920212223 |
- ---
- - name: Confiogure static IPv6 route
- uci:
- command: section
- config: network
- type: route6
- section: "{{ item.name }}"
- value: "{{ item.route }}"
- loop: "{% if routes.ipv6 is defined %}{{ routes.ipv6 }}{% else %}[]{% endif %}"
- notify:
- - Save changes
- - name: Confiogure static IPv4 route
- uci:
- command: section
- config: network
- type: route
- section: "{{ item.name }}"
- value: "{{ item.route }}"
- loop: "{% if routes.ipv4 is defined %}{{ routes.ipv4 }}{% else %}[]{% endif %}"
- notify:
- - Save changes
|