blob: aed7930ffebf2f43be64f2b262eaec0daa25a24c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
[Unit]
Description=Geodata updater service (export ‘%I’ to COG)
After=geodata-update@%i.target
After=geodata-download@%i.service
Upholds=geodata-update@%i.target
[Service]
User=_geodata
Group=_geodata
Nice=15
IOSchedulingClass=idle
# Point TMPDIR to something that is not a tmpfs as we need to unpack large archives
Environment=TMPDIR=/var/tmp
Type=oneshot
ExecStart=/usr/local/bin/geodata-import \
--cachedir=%C/geodata \
--lockfile=%t/lock/geodata/lock \
--lockdir-sources=%t/lock/geodata/cache \
--rasterdir=/var/www/webmap/raster/%I \
--metadata-compress \
-- %I
# Hardening
NoNewPrivileges=yes
ProtectHome=yes
ProtectSystem=strict
PrivateDevices=yes
ProtectControlGroups=yes
ProtectKernelModules=yes
ProtectKernelTunables=yes
RestrictAddressFamilies=AF_UNIX
ReadWritePaths=%t/lock/geodata
ReadWritePaths=/var/www/webmap/raster
PrivateTmp=yes
[Install]
WantedBy=geodata-update@%i.target
|