mirror of
https://github.com/containers/podman.git
synced 2025-05-17 15:18:43 +08:00
13 lines
322 B
Go
13 lines
322 B
Go
//go:build !systemd
|
|
// +build !systemd
|
|
|
|
package events
|
|
|
|
// DefaultEventerType is logfile when systemd is not present
|
|
const DefaultEventerType = LogFile
|
|
|
|
// newEventJournalD always returns an error if libsystemd not found
|
|
func newEventJournalD(options EventerOptions) (Eventer, error) {
|
|
return nil, ErrNoJournaldLogging
|
|
}
|