libs/systemd.py: dont sort lists and sets

This commit is contained in:
cronekorkn 2023-05-04 17:07:21 +02:00
parent 5b6d31742e
commit c0ccd78517
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

View file

@ -13,7 +13,7 @@ template = '''
${option}=${k}=${v}
% endfor
% elif isinstance(value, (list, set, tuple)):
% for item in sorted(value):
% for item in (sorted(value) if isinstance(value, set) else value):
${option}=${item}
% endfor
% elif isinstance(value, type(None)):