mirror of
https://github.com/yggdrasil-network/yggdrasil-go
synced 2024-11-10 07:20:39 +03:00
045a24d74e
- Enable (and limit to) capabilities that require to setup tun/tap interface. - Ensure that tun module is active.
25 lines
652 B
Desktop File
25 lines
652 B
Desktop File
[Unit]
|
|
Description=yggdrasil
|
|
Wants=network.target
|
|
After=network.target
|
|
|
|
[Service]
|
|
Group=yggdrasil
|
|
ProtectHome=true
|
|
ProtectSystem=true
|
|
SyslogIdentifier=yggdrasil
|
|
CapabilityBoundSet=CAP_NET_ADMIN
|
|
ExecStartPre=+/sbin/modprobe tun
|
|
ExecStartPre=/bin/sh -ec "if ! test -s /etc/yggdrasil.conf; \
|
|
then umask 077; \
|
|
yggdrasil -genconf > /etc/yggdrasil.conf; \
|
|
echo 'WARNING: A new /etc/yggdrasil.conf file has been generated.'; \
|
|
fi"
|
|
ExecStart=/usr/bin/yggdrasil -useconffile /etc/yggdrasil.conf
|
|
ExecReload=/bin/kill -HUP $MAINPID
|
|
Restart=always
|
|
TimeoutStopSec=5
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|