Update index.py

pull/445/head
midoks 2 years ago
parent 6883316efc
commit 9bb59a1559
  1. 4
      plugins/openresty/index.py

@ -264,7 +264,7 @@ def restyOp(method):
current_os = mw.getOs()
if current_os == "darwin":
data = mw.execShell('systemctl ' + method + ' openresty')
data = mw.execShell(file + ' ' + method)
if data[1] == '':
return 'ok'
return data[1]
@ -275,7 +275,7 @@ def restyOp(method):
return 'ok'
return data[1]
data = mw.execShell(file + ' ' + method)
data = mw.execShell('systemctl ' + method + ' openresty')
if data[1] == '':
return 'ok'
return data[1]

Loading…
Cancel
Save