mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-07 02:00:41 +03:00
Fix systemd scripts.
Makefile installation directory is /usr. Adjusted systemd scripts to correct directory from /opt to /usr. Allows systemd scripts to work correctly.
This commit is contained in:
parent
53bf738aae
commit
21b778551f
@ -1,13 +1,13 @@
|
||||
[Unit]
|
||||
Description=SoftEther VPN Client
|
||||
After=network.target auditd.service
|
||||
ConditionPathExists=!/opt/vpnclient/do_not_run
|
||||
ConditionPathExists=!/usr/vpnclient/do_not_run
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
EnvironmentFile=-/opt/vpnclient
|
||||
ExecStart=/opt/vpnclient/vpnclient start
|
||||
ExecStop=/opt/vpnclient/vpnclient stop
|
||||
EnvironmentFile=-/usr/vpnclient
|
||||
ExecStart=/usr/vpnclient/vpnclient start
|
||||
ExecStop=/usr/vpnclient/vpnclient stop
|
||||
KillMode=process
|
||||
Restart=on-failure
|
||||
|
||||
@ -16,7 +16,7 @@ PrivateTmp=yes
|
||||
ProtectHome=yes
|
||||
ProtectSystem=full
|
||||
ReadOnlyDirectories=/
|
||||
ReadWriteDirectories=-/opt/vpnclient
|
||||
ReadWriteDirectories=-/usr/vpnclient
|
||||
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_BROADCAST CAP_NET_RAW CAP_SYS_NICE CAP_SYS_ADMIN CAP_SETUID
|
||||
|
||||
[Install]
|
||||
|
Loading…
Reference in New Issue
Block a user