summaryrefslogtreecommitdiff
path: root/roles/openwrt/image/templates/uci.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openwrt/image/templates/uci.j2')
-rw-r--r--roles/openwrt/image/templates/uci.j215
1 files changed, 0 insertions, 15 deletions
diff --git a/roles/openwrt/image/templates/uci.j2 b/roles/openwrt/image/templates/uci.j2
deleted file mode 100644
index 3cc480b2..00000000
--- a/roles/openwrt/image/templates/uci.j2
+++ /dev/null
@@ -1,15 +0,0 @@
-{{ ansible_managed | comment }}
-
-{% for section in item.value %}
-config {{ section.name }}
-{% for option, value in section.options.items() %}
-{% if value is iterable and value is not string %}
-{% for v in value %}
- list {{ option }} '{{ v }}'
-{% endfor %}
-{% else %}
- option {{ option }} '{{ value }}'
-{% endif %}
-{% endfor %}
-
-{% endfor %}