sorted ports

This commit is contained in:
cronekorkn 2022-11-02 11:47:11 +01:00
parent e8f878884d
commit 43aadda73f
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

View file

@ -74,8 +74,8 @@ def firewall(metadata):
return {
'nftables': {
'input': {
f"tcp dport {{ {', '.join(ports)} }} accept",
f"udp dport {{ {', '.join(ports)} }} accept",
f"tcp dport {{ {', '.join(sorted(ports))} }} accept",
f"udp dport {{ {', '.join(sorted(ports))} }} accept",
},
},
}