mirror of
https://github.com/containers/podman.git
synced 2026-03-18 22:57:36 -04:00
Vendor in the latest HEAd of containers/common to implicitly support the tag@digest notation for images. To remain compatible with Docker, the tag will be stripped off the image reference and is entirely ignored. Fixes: #6721 Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
20 lines
263 B
Go
20 lines
263 B
Go
// +build !systemd
|
|
|
|
package config
|
|
|
|
func defaultCgroupManager() string {
|
|
return CgroupfsCgroupsManager
|
|
}
|
|
|
|
func defaultEventsLogger() string {
|
|
return "file"
|
|
}
|
|
|
|
func defaultLogDriver() string {
|
|
return DefaultLogDriver
|
|
}
|
|
|
|
func useSystemd() bool {
|
|
return false
|
|
}
|