Petr Michalec | eb14b55 | 2017-06-01 10:27:05 +0200 | [diff] [blame] | 1 | {%- from "linux/map.jinja" import system with context -%} |
Michael Fladischer | 1e41e30 | 2018-02-23 18:31:25 +0100 | [diff] [blame] | 2 | {%- for section, options in settings.items() %} |
Petr Michalec | eb14b55 | 2017-06-01 10:27:05 +0200 | [diff] [blame] | 3 | |
| 4 | [{{ section[0].upper() + section[1:] }}] |
Michael Fladischer | 1e41e30 | 2018-02-23 18:31:25 +0100 | [diff] [blame] | 5 | {%- for option, value in options.items() %} |
Petr Michalec | eb14b55 | 2017-06-01 10:27:05 +0200 | [diff] [blame] | 6 | {{ option[0].upper() + option[1:] }}={{ value }} |
| 7 | {%- endfor %} |
| 8 | {%- endfor %} |