diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-10-24 21:41:02 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-10-25 04:41:02 +0900 |
commit | 73f19ce1aeabcd56a77434cf8affb5a561f0dee7 (patch) | |
tree | a0d3389af55e11922e6fe9b05478e20818df9ce2 /units | |
parent | Merge pull request #10484 from yuwata/udev-spawn-simplify (diff) | |
download | systemd-73f19ce1aeabcd56a77434cf8affb5a561f0dee7.tar.gz systemd-73f19ce1aeabcd56a77434cf8affb5a561f0dee7.tar.bz2 systemd-73f19ce1aeabcd56a77434cf8affb5a561f0dee7.zip |
units: drop systemd-user-sessions.service ordering dep on systemd-journal-flush.service (#10502)
THis dep existed since the unit was introduced, but I cannot see what
good it would do. Hence in the interest of simplifying things, let's
drop it. If breakages appear later we can certainly revert this again.
Fixes: #10469
Diffstat (limited to 'units')
-rw-r--r-- | units/systemd-journal-flush.service.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/units/systemd-journal-flush.service.in b/units/systemd-journal-flush.service.in index 439f5f3f7..bacfe51d6 100644 --- a/units/systemd-journal-flush.service.in +++ b/units/systemd-journal-flush.service.in @@ -12,9 +12,8 @@ Description=Flush Journal to Persistent Storage Documentation=man:systemd-journald.service(8) man:journald.conf(5) DefaultDependencies=no Requires=systemd-journald.service -After=systemd-journald.service -After=systemd-remount-fs.service -Before=systemd-user-sessions.service systemd-tmpfiles-setup.service +After=systemd-journald.service systemd-remount-fs.service +Before=systemd-tmpfiles-setup.service RequiresMountsFor=/var/log/journal [Service] |