summaryrefslogtreecommitdiff
path: root/libpod/events/journal_linux.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2019-05-14 16:17:11 -0500
committerbaude <bbaude@redhat.com>2019-05-14 16:17:11 -0500
commit7a58c6601b8aaaf3ae04f7b49ec3c638f55b40ad (patch)
treea0402e9fca462c504b723409a140cf4a7f3c0e12 /libpod/events/journal_linux.go
parenta261b60cc8851c04efd191be6f6e2e4598439822 (diff)
downloadpodman-7a58c6601b8aaaf3ae04f7b49ec3c638f55b40ad.tar.gz
podman-7a58c6601b8aaaf3ae04f7b49ec3c638f55b40ad.tar.bz2
podman-7a58c6601b8aaaf3ae04f7b49ec3c638f55b40ad.zip
set default event logger based on build tags
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>
Diffstat (limited to 'libpod/events/journal_linux.go')
-rw-r--r--libpod/events/journal_linux.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/events/journal_linux.go b/libpod/events/journal_linux.go
index 264c84f89..78a630e9a 100644
--- a/libpod/events/journal_linux.go
+++ b/libpod/events/journal_linux.go
@@ -12,6 +12,9 @@ import (
"github.com/sirupsen/logrus"
)
+// DefaultEventerType is journald when systemd is available
+const DefaultEventerType = Journald
+
// EventJournalD is the journald implementation of an eventer
type EventJournalD struct {
options EventerOptions