diff options
author | Marius Tessmann <mus.svz@gmail.com> | 2014-08-28 22:01:46 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-08-28 18:06:02 -0400 |
commit | fd5ab841e7582342b23c9c08ba24ce0cca266690 (patch) | |
tree | a848d25779bb396e9db65490d2c4fff45cfdc9d8 /units | |
parent | c32e70aa8ea5431c881553c6c609cef5536c4e65 (diff) |
systemd-journal-upload: fix invalid After=
After= belongs into [Unit], not [Install]. Found with systemd-analyze
verify.
Diffstat (limited to 'units')
-rw-r--r-- | units/systemd-journal-upload.service.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/units/systemd-journal-upload.service.in b/units/systemd-journal-upload.service.in index e79f962043..359ff10e25 100644 --- a/units/systemd-journal-upload.service.in +++ b/units/systemd-journal-upload.service.in @@ -7,6 +7,7 @@ [Unit] Description=Journal Remote Upload Service +After=network.target [Service] ExecStart=@rootlibexecdir@/systemd-journal-upload \ @@ -18,4 +19,3 @@ WatchdogSec=20min [Install] WantedBy=multi-user.target -After=network.target |