more fixes

This commit is contained in:
Quentin McGaw
2026-08-07 11:32:24 +00:00
parent 2697b4422f
commit 3d76b14224
5 changed files with 7 additions and 19 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ func (f *Firewall) overrideWith(other Firewall) {
func (f *Firewall) setDefaults(globalLogLevel string) {
f.Enabled = gosettings.DefaultPointer(f.Enabled, true)
f.Implementation = gosettings.DefaultComparable(f.Implementation, "iptables")
f.Implementation = gosettings.DefaultComparable(f.Implementation, "auto")
f.Iptables.setDefaults(globalLogLevel)
}