Merge pull request #5925 from rhatdan/containers.conf

Bump to github.com/containers/common to v0.9.2
This commit is contained in:
OpenShift Merge Robot
2020-04-21 16:15:26 -04:00
committed by GitHub
4 changed files with 10 additions and 4 deletions

View File

@@ -224,6 +224,12 @@ func newLibpodConfig(c *Config) error {
}
}
// hard code EventsLogger to "file" to match older podman versions.
if config.EventsLogger != "file" {
logrus.Debugf("Ignoring lipod.conf EventsLogger setting %q. Use containers.conf if you want to change this setting and remove libpod.conf files.", config.EventsLogger)
config.EventsLogger = "file"
}
c.libpodToContainersConfig(config)
return nil