From 0b6bd84d1c2f586fd4c3de6f0ae41ad0fe3fb4d4 Mon Sep 17 00:00:00 2001 From: eson <474420502@qq.com> Date: Sat, 22 Dec 2018 23:31:13 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8Exit=E4=BB=A3=E6=9B=BF=E8=87=AApkill?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dutiesnet.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dutiesnet.go b/dutiesnet.go index fe7f365..aa42850 100644 --- a/dutiesnet.go +++ b/dutiesnet.go @@ -3,6 +3,7 @@ package main import ( "log" "net" + "os" "os/exec" "strings" "sync/atomic" @@ -125,8 +126,7 @@ func (duties *DutiesNet) checkError2() bool { func (duties *DutiesNet) checkError3() bool { if duties.IsPPPNExist("ppp2") { log.Println("IsPPP2Exist not") - _, err := exec.Command("pkill", "pppoe_control").Output() - ErrorLog(err) + os.Exit(2) return true } return false // 检测错误才返回true 否则 false