Files
Valentin Rothberg 57cdc21b00 vendor c/common@0ededd18a1
Update the login tests to reflect the latest changes to allow http{s}
prefixes (again) to address bugzilla.redhat.com/show_bug.cgi?id=2062072.

Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
2022-03-18 15:18:30 +01:00

30 lines
435 B
Go

//go:build !systemd || !cgo
// +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
}