Compare commits
2 Commits
5a79b4021a
...
275f2515d6
| Author | SHA1 | Date |
|---|---|---|
|
|
275f2515d6 | |
|
|
b4604928ec |
|
|
@ -183,7 +183,7 @@ def check502():
|
|||
verlist = [
|
||||
'52', '53', '54', '55', '56', '70',
|
||||
'71', '72', '73', '74', '80', '81',
|
||||
'82', '83', '84'
|
||||
'82', '83', '84', '85'
|
||||
]
|
||||
for ver in verlist:
|
||||
server_dir = mw.getServerDir()
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ def status(version):
|
|||
sock文件判断是否启动
|
||||
'''
|
||||
sock = getPhpSocket(version)
|
||||
if sock.find(':'):
|
||||
if sock.find(':')>-1:
|
||||
return status_progress(version)
|
||||
|
||||
if not os.path.exists(sock):
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ def status(version):
|
|||
sock文件判断是否启动
|
||||
'''
|
||||
sock = getPhpSocket(version)
|
||||
if sock.find(':'):
|
||||
if sock.find(':')>-1:
|
||||
return status_progress(version)
|
||||
|
||||
if not os.path.exists(sock):
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ def status(version):
|
|||
sock文件判断是否启动
|
||||
'''
|
||||
sock = getPhpSocket(version)
|
||||
if sock.find(':'):
|
||||
if sock.find(':')>-1:
|
||||
return status_progress(version)
|
||||
|
||||
if not os.path.exists(sock):
|
||||
|
|
|
|||
Loading…
Reference in New Issue