This commit is contained in:
Wade Simmons
2026-02-12 12:16:16 -05:00
parent f573e8a266
commit 2190c04201
15 changed files with 14 additions and 39 deletions

View File

@@ -804,10 +804,8 @@ func (fr *FirewallRule) isAny(groups []string, host string, cidr string) bool {
return true
}
for _, group := range groups {
if group == "any" {
return true
}
if slices.Contains(groups, "any") {
return true
}
if host == "any" {