bundles/letsencrypt: use sorted() in domains.txt
This commit is contained in:
parent
31a1a88d13
commit
0743283763
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
${node.hostname}
|
||||
|
||||
% for domain, aliases in node.metadata.get('letsencrypt', {}).get('domains', {}).items():
|
||||
${domain} ${' '.join(aliases)}
|
||||
% for domain, aliases in sorted(node.metadata.get('letsencrypt', {}).get('domains', {}).items()):
|
||||
${domain} ${' '.join(sorted(aliases))}
|
||||
% endfor
|
||||
|
|
Loading…
Reference in a new issue