blob: 40a029ab498f908caf7373136cea1c6d097833f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[Unit]
Description=RTP Sender
[Service]
{# TODO: remove hardcoded IP #}
ExecStart=/usr/local/bin/rtp-send.sh 192.168.48.102
Restart=always
RestartSecs=1s
StartLimitBurst=10
StartLimitIntervalSec=5s
CapabilityBoundingSet=CAP_NET_BIND_SERVICE
NoNewPrivileges=yes
PrivateTmp=yes
ProtectSystem=strict
ProtectHome=yes
ProtectKernelTunables=yes
ProtectControlGroups=yes
RestrictRealtime=yes
RestrictAddressFamilies=AF_INET AF_INET6
[Install]
WantedBy=multi-user.target
|