mirror of
https://github.com/containers/podman.git
synced 2025-06-03 12:04:06 +08:00
29 lines
407 B
Go
29 lines
407 B
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
|
|
}
|