Bump to github.com/containers/common to v0.9.2

This allows us to fix issues with people with old libpod.conf

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2020-04-21 13:30:17 -04:00
parent 0d817f5210
commit 08734894ae
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