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