1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00

Force stop/start on MLVPN reload

This commit is contained in:
Ycarus (Yannick Chabanois) 2020-10-28 13:08:50 +01:00
parent 97100ee3be
commit afe5fd135b

View file

@ -4,7 +4,6 @@ START=88
SERVICE_DAEMONIZE=1 SERVICE_DAEMONIZE=1
#SERVICE_SIG="KILL" #SERVICE_SIG="KILL"
interface_multipath_settings() { interface_multipath_settings() {
local mode port local mode port
local config="$1" local config="$1"
@ -71,3 +70,8 @@ start() {
stop() { stop() {
service_stop /usr/sbin/mlvpn service_stop /usr/sbin/mlvpn
} }
reload() {
stop
start
}