summaryrefslogtreecommitdiff
path: root/libpod/events/journal_unsupported.go
blob: 004efdab22cde90acfa4224615343be1ba85e709 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +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
}