22 lines
415 B
SYSTEMD
22 lines
415 B
SYSTEMD
|
[Unit]
|
||
|
Description=Velociraptor Server Service
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
User=root
|
||
|
Group=root
|
||
|
UMask=0027
|
||
|
ExecStart=/usr/bin/velociraptor frontend --verbose --config /etc/velociraptor/server.config
|
||
|
|
||
|
PrivateTmp=true
|
||
|
PrivateDevices=true
|
||
|
ProtectHostname=true
|
||
|
ProtectClock=true
|
||
|
ProtectKernelTunables=true
|
||
|
ProtectKernelModules=true
|
||
|
ProtectControlGroups=true
|
||
|
MemoryDenyWriteExecute=true
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|