Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions drivers/overlay/overlay.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,10 @@ func Fini(drv driverapi.Driver) {
}

func (d *driver) configure() error {

// Apply OS specific kernel configs if needed
d.initOS.Do(applyOStweaks)

if d.store == nil {
return nil
}
Expand All @@ -188,9 +192,6 @@ func (d *driver) configure() error {
return d.initializeVxlanIdm()
}

// Apply OS specific kernel configs if needed
d.initOS.Do(applyOStweaks)

return nil
}

Expand Down