blob: d22ed37fd0705f05dd4a532f48de8a744e83b5cb (
plain) (
blame)
1
2
3
4
5
6
|
{% for (section,configuration) in netdata_config | dictsort %}
[{{ section }}]
{% for (key,value) in configuration | dictsort %}
{{ key }} = {{ value }}
{% endfor %}
{% endfor %}
|