mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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:
parent
443437f5ea
commit
6e8cfd63fc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue