nftables: drop unnecessary semicolons

This commit is contained in:
Daniel Micay 2023-06-10 22:14:54 -04:00
parent 27aca7474c
commit f9bd265028

View File

@ -8,7 +8,7 @@ table inet filter {
iif lo notrack accept
tcp dport {22, 80, 443, 7275} notrack accept
udp dport 123 notrack accept;
udp dport 123 notrack accept
meta l4proto {icmp, ipv6-icmp} notrack accept
}
@ -17,7 +17,7 @@ table inet filter {
oif lo notrack accept
tcp sport {22, 80, 443, 7275} notrack accept
udp sport 123 notrack accept;
udp sport 123 notrack accept
meta l4proto {icmp, ipv6-icmp} notrack accept
}