diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-07-11 02:41:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-07-11 02:41:16 +0200 |
commit | b8156be03f71c53072c7126bb418410acbef6c81 (patch) | |
tree | 04f650efd49798b9c4cadfd521952d5a91f3fb74 /Makefile.am | |
parent | 14a65d65a0c25ba4809b8d97f54ebf3e12eac84c (diff) |
journal: replace implicit flushing of journal by explicit one
The old automatism that the flushing of the journal from /run to /var
was triggered by the appearance of /var/log/journal is broken if that
directory is mounted from another host and hence always available to be
useful as mount point. To avoid probelsm with this, introduce a new unit
that is explicitly orderer after all mounte files systems and triggers
the flushing.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 70b8b091e1..6b10f60577 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2331,7 +2331,8 @@ dist_systemunit_DATA += \ units/systemd-journald.socket nodist_systemunit_DATA += \ - units/systemd-journald.service + units/systemd-journald.service \ + units/systemd-journal-flush.service dist_pkgsysconf_DATA += \ src/journal/journald.conf @@ -2357,6 +2358,7 @@ EXTRA_DIST += \ src/journal/libsystemd-journal.pc.in \ src/journal/libsystemd-journal.sym \ units/systemd-journald.service.in \ + units/systemd-journal-flush.service.in \ src/journal/journald-gperf.gperf CLEANFILES += \ |