mirror of
https://github.com/containers/podman.git
synced 2025-12-01 18:49:18 +08:00
Pull in updates made to the filters code for images. Filters now perform an AND operation except for th reference filter which does an OR operation for positive case but an AND operation for negative cases. Signed-off-by: Urvashi Mohnani <umohnani@redhat.com>
29 lines
411 B
Go
29 lines
411 B
Go
//go:build !systemd || !cgo
|
|
|
|
package config
|
|
|
|
const (
|
|
// DefaultLogDriver is the default type of log files
|
|
DefaultLogDriver = "k8s-file"
|
|
)
|
|
|
|
func defaultCgroupManager() string {
|
|
return CgroupfsCgroupsManager
|
|
}
|
|
|
|
func defaultEventsLogger() string {
|
|
return "file"
|
|
}
|
|
|
|
func defaultLogDriver() string {
|
|
return DefaultLogDriver
|
|
}
|
|
|
|
func useSystemd() bool {
|
|
return false
|
|
}
|
|
|
|
func useJournald() bool {
|
|
return false
|
|
}
|