Merge pull request #35172 from cpuguy83/for_linux_126_dont_abort
Don't abort when setting may_detach_mounts Upstream-commit: 02a2ba3e8b095f901d55020225a7300bf1eb04e1 Component: engine
This commit is contained in:
@@ -1300,7 +1300,10 @@ func setupDaemonProcess(config *config.Config) error {
|
||||
if err := setupOOMScoreAdj(config.OOMScoreAdjust); err != nil {
|
||||
return err
|
||||
}
|
||||
return setMayDetachMounts()
|
||||
if err := setMayDetachMounts(); err != nil {
|
||||
logrus.WithError(err).Warn("Could not set may_detach_mounts kernel parameter")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// This is used to allow removal of mountpoints that may be mounted in other
|
||||
|
||||
Reference in New Issue
Block a user