Fix firewalld callback.

It needs to be called with same args as the one 4 lines above.

Signed-off-by: Jiri Popelka <jpopelka@redhat.com>
This commit is contained in:
Jiri Popelka
2015-05-07 10:08:49 +02:00
parent 443437f5ea
commit 6e8cfd63fc
+1 -1
View File
@@ -145,7 +145,7 @@ func (l *Link) Enable() error {
return err
}
// call this on Firewalld reload
iptables.OnReloaded(func() { l.toggle("-I", false) })
iptables.OnReloaded(func() { l.toggle("-A", false) })
l.IsEnabled = true
return nil
}