Update index.py

pull/121/head
midoks 3 years ago
parent 18099f39ce
commit d511249fe3
  1. 10
      plugins/mysql/index.py

@ -197,7 +197,7 @@ def status(version=''):
if data[0] == '':
return 'stop'
pid = getServerDir() + '/data/mysql.pid'
pid = getPidFile()
if not os.path.exists(pid):
return 'stop'
@ -212,6 +212,14 @@ def getDataDir():
return tmp.groups()[0].strip()
def getPidFile():
file = getConf()
content = mw.readFile(file)
rep = 'pid-file\s*=\s*(.*)'
tmp = re.search(rep, content)
return tmp.groups()[0].strip()
def binLog():
args = getArgs()
conf = getConf()

Loading…
Cancel
Save