Files
podman/vendor/github.com/containers/common/pkg/config/nosystemd.go
Urvashi Mohnani 7c8c945496 Vendor in latest c/common
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>
2024-01-25 11:10:41 -05:00

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
}