blob: e2a6eb41671537c8a3daf807a42d0f0db6e12f2f (
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
41
|
[Unit]
Description=Webmap updater service (import ‘%I’ to PostGIS)
After=postgresql.service webmap-update@%i.target
After=webmap-download@%i.service
Upholds=webmap-update@%i.target
[Service]
User=_webmap
Group=_webmap
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/webmap-import \
--cachedir=%C/webmap \
--lockfile=%t/lock/webmap/lock \
--lockdir-sources=%t/lock/webmap/cache \
--mvtdir=/var/www/webmap/tiles/%I \
--mvt-compress \
--metadata-compress \
-- %I
# Hardening
NoNewPrivileges=yes
ProtectHome=yes
ProtectSystem=strict
PrivateDevices=yes
ProtectControlGroups=yes
ProtectKernelModules=yes
ProtectKernelTunables=yes
RestrictAddressFamilies=AF_UNIX AF_INET AF_INET6
ReadWritePaths=%t/lock/webmap
ReadWritePaths=/var/www/webmap/tiles
PrivateTmp=yes
[Install]
WantedBy=webmap-update@%i.target
|