mirror of
https://github.com/containers/podman.git
synced 2025-05-30 23:17:20 +08:00

once the default event logger was removed from libpod.conf, we need to set the default based on whether the systemd build tag is used or not. Signed-off-by: baude <bbaude@redhat.com>
12 lines
302 B
Go
12 lines
302 B
Go
// +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
|
|
}
|