Skip to content

Commit

Permalink
Fix: sip003 plugin process cannot stop
Browse files Browse the repository at this point in the history
  • Loading branch information
loyess committed Oct 1, 2023
1 parent c6421b7 commit b20ae83
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions utils/stop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ stop_services(){
kill_process "$SHADOWSOCKS_LIBEV_BIN_PATH" "shadowsocks-libev"
kill_process "$SHADOWSOCKS_RUST_BIN_PATH" "shadowsocks-rust"
kill_process "$GO_SHADOWSOCKS2_BIN_PATH" "go-shadowsocks"
kill_process "$V2RAY_PLUGIN_BIN_PATH" "v2ray-plugin"
kill_process "$SIMPLE_OBFS_BIN_PATH" "simple-obfs"
kill_process "$KCPTUN_BIN_PATH" "kcptun"
kill_process "$GOQUIET_BIN_PATH" "GoQuiet"
kill_process "$CLOAK_SERVER_BIN_PATH" "Cloak"
kill_process "$MTT_BIN_PATH" "mos-tls-tunnel"
kill_process "$RABBIT_BIN_PATH" "rabbit-tcp"
kill_process "$SIMPLE_TLS_BIN_PATH" "simple-tls"
kill_process "$GOST_PLUGIN_BIN_PATH" "gost-plugin"
kill_process "$XRAY_PLUGIN_BIN_PATH" "xray-plugin"
kill_process "$QTUN_BIN_PATH" "qtun"
kill_process "$GUN_BIN_PATH" "gun"
kill_process "v2ray-plugin" "v2ray-plugin"
kill_process "obfs-server" "simple-obfs"
kill_process "kcptun-server" "kcptun"
kill_process "gq-server" "GoQuiet"
kill_process "ck-server" "Cloak"
kill_process "mtt-server" "mos-tls-tunnel"
kill_process "rabbit-tcp" "rabbit-tcp"
kill_process "simple-tls" "simple-tls"
kill_process "gost-plugin" "gost-plugin"
kill_process "xray-plugin" "xray-plugin"
kill_process "qtun-server" "qtun"
kill_process "gun-server" "gun"
if [ -e "${WEB_INSTALL_MARK}" ]; then
kill_process "$CADDY_BIN_PATH" "caddy"
kill_process "$NGINX_BIN_PATH" "nginx"
kill_process "caddy" "caddy"
kill_process "nginx" "nginx"
fi
}

0 comments on commit b20ae83

Please sign in to comment.