bundlewrap/bundles/mariadb/files/override.conf
2024-02-08 10:46:27 +01:00

11 lines
186 B
Text

% for section, options in sorted(conf.items()):
[${section}]
% for key, value in sorted(options.items()):
% if value is None:
${key}
% else:
${key} = ${value}
% endif
% endfor
% endfor