mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 11:00:28 +00:00
25 lines
668 B
Desktop File
25 lines
668 B
Desktop File
[Unit]
|
|
Description=yggdrasil
|
|
Wants=network.target
|
|
After=network.target
|
|
|
|
[Service]
|
|
Group=yggdrasil
|
|
ProtectHome=true
|
|
ProtectSystem=true
|
|
SyslogIdentifier=yggdrasil
|
|
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_RAW
|
|
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
|