blob: 4777adfca7b3e6de10b2590db0fd70d01c5b4586 [file] [log] [blame]
Petr Michaleceb14b552017-06-01 10:27:05 +02001{%- from "linux/map.jinja" import system with context -%}
Michael Fladischer1e41e302018-02-23 18:31:25 +01002{%- for section, options in settings.items() %}
Petr Michaleceb14b552017-06-01 10:27:05 +02003
4[{{ section[0].upper() + section[1:] }}]
Michael Fladischer1e41e302018-02-23 18:31:25 +01005{%- for option, value in options.items() %}
Petr Michaleceb14b552017-06-01 10:27:05 +02006{{ option[0].upper() + option[1:] }}={{ value }}
7{%- endfor %}
8{%- endfor %}