]> git.ipfire.org Git - thirdparty/systemd.git/blob - units/systemd-journal-upload.service.in
Merge pull request #14017 from poettering/analyze-calendar-tweaks
[thirdparty/systemd.git] / units / systemd-journal-upload.service.in
1 # SPDX-License-Identifier: LGPL-2.1+
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]
11 Description=Journal Remote Upload Service
12 Documentation=man:systemd-journal-upload(8)
13 Wants=network-online.target
14 After=network-online.target
15
16 [Service]
17 DynamicUser=yes
18 ExecStart=@rootlibexecdir@/systemd-journal-upload --save-state
19 LockPersonality=yes
20 MemoryDenyWriteExecute=yes
21 PrivateDevices=yes
22 ProtectControlGroups=yes
23 ProtectHome=yes
24 ProtectHostname=yes
25 ProtectKernelModules=yes
26 ProtectKernelTunables=yes
27 RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
28 RestrictNamespaces=yes
29 RestrictRealtime=yes
30 StateDirectory=systemd/journal-upload
31 SupplementaryGroups=systemd-journal
32 SystemCallArchitectures=native
33 User=systemd-journal-upload
34 @SERVICE_WATCHDOG@
35
36 # If there are many split up journal files we need a lot of fds to access them
37 # all in parallel.
38 LimitNOFILE=@HIGH_RLIMIT_NOFILE@
39
40 [Install]
41 WantedBy=multi-user.target