We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ec0ce6 + 9d298aa commit eb57059Copy full SHA for eb57059
1 file changed
drivers/overlay/overlay.go
@@ -180,6 +180,10 @@ func Fini(drv driverapi.Driver) {
180
}
181
182
func (d *driver) configure() error {
183
+
184
+ // Apply OS specific kernel configs if needed
185
+ d.initOS.Do(applyOStweaks)
186
187
if d.store == nil {
188
return nil
189
@@ -188,9 +192,6 @@ func (d *driver) configure() error {
192
return d.initializeVxlanIdm()
193
190
194
191
- // Apply OS specific kernel configs if needed
- d.initOS.Do(applyOStweaks)
-
195
196
197
0 commit comments