소스 검색

Fix for init.d/zerotier-one (again)

Adam Ierymenko 11 년 전
부모
커밋
d8d4aace42
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      ext/installfiles/linux/init.d/zerotier-one

+ 2 - 1
ext/installfiles/linux/init.d/zerotier-one

@@ -47,7 +47,8 @@ fi
 
 running=0
 if [ "$pid" -gt 0 ]; then
-	if diff "/proc/$pid/exe" "$zthome/zerotier-one" >>/dev/null 2>&1; then
+	exepath=`readlink /proc/$pid/exe 2>/dev/null | grep zerotier-one`
+	if [ -n "$exepath" ]; then
 		running=1
 	fi
 fi