]> git.ipfire.org Git - thirdparty/systemd.git/blame - units/systemd-journald-sync@.service
journal: explicitly sync namespaced journals before stopping socket units
[thirdparty/systemd.git] / units / systemd-journald-sync@.service
CommitLineData
61628287
YW
1# SPDX-License-Identifier: LGPL-2.1-or-later
2#
3# This file is part of systemd.
4#
5# systemd is free software; you can redistribute it and/or modify it
6# under the terms of the GNU Lesser General Public License as published by
7# the Free Software Foundation; either version 2.1 of the License, or
8# (at your option) any later version.
9
10[Unit]
11Description=Sync Journal for Namespace %i
12Documentation=man:systemd-journald.service(8) man:journald.conf(5)
13
14# At the time when journalctl in ExecStop= is invoked,
15# systemd-journald@.service may not be started yet. Hence, both socket
16# units must be active when journalctl is invoked.
17Requires=systemd-journald@%i.socket systemd-journald-varlink@%i.socket
18After=systemd-journald@%i.socket systemd-journald-varlink@%i.socket
19StopWhenUnneeded=yes
20
21[Service]
22ExecStop=journalctl --namespace=%i --sync
23Type=oneshot
24RemainAfterExit=yes