mirror of
https://github.com/containers/podman.git
synced 2025-11-01 10:45:52 +08:00
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>
30 lines
435 B
Go
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
|
|
}
|