mirror of
https://github.com/containers/podman.git
synced 2025-11-29 01:28:22 +08:00
9 lines
226 B
Go
9 lines
226 B
Go
//go:build (linux && !systemd) || freebsd
|
|
|
|
package events
|
|
|
|
// newJournalDEventer always returns an error if libsystemd not found
|
|
func newJournalDEventer(_ EventerOptions) (Eventer, error) {
|
|
return nil, ErrNoJournaldLogging
|
|
}
|