blob: 6ed39792bcade494c65a8fecc5a16e88684f9f7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//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
}
|