mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-07 10:10:41 +03:00
53bf738aae
Makefile installation directory is /usr. Adjusted systemd scripts to correct directory from /opt to /usr. Allows systemd scripts to work correctly.
24 lines
549 B
Desktop File
24 lines
549 B
Desktop File
[Unit]
|
|
Description=SoftEther VPN Bridge
|
|
After=network.target auditd.service
|
|
ConditionPathExists=!/usr/vpnbridge/do_not_run
|
|
|
|
[Service]
|
|
Type=forking
|
|
ExecStart=/usr/vpnbridge/vpnbridge start
|
|
ExecStop=/usr/vpnbridge/vpnbridge stop
|
|
KillMode=process
|
|
Restart=on-failure
|
|
|
|
# Hardening
|
|
PrivateTmp=yes
|
|
ProtectHome=yes
|
|
ProtectSystem=full
|
|
ReadOnlyDirectories=/
|
|
ReadWriteDirectories=-/usr/vpnbridge
|
|
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_BROADCAST CAP_NET_RAW CAP_SYS_NICE CAP_SYS_ADMIN CAP_SETUID
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|