pull/889/head
dami 2 weeks ago
parent 0e7845985a
commit a23264a542
  1. 1
      plugins/supervisor/install.sh
  2. 11
      web/utils/plugin.py

@ -13,6 +13,7 @@ VERSION=$2
# /www/server/mdserver-web/bin/supervisord -n -c /etc/supervisor/supervisord.conf
# /www/server/mdserver-web/bin/supervisorctl -c /www/server/supervisor/supervisor.conf
# cmd | status
# systemctl status supervisor
# journalctl -u supervisor -f
bash ${rootPath}/scripts/getos.sh

@ -839,12 +839,17 @@ class plugin(object):
if not os.path.exists(path):
return ('', '')
py_cmd = 'cd ' + mw.getPanelDir() + " && "+ py_cmd
data = mw.execShell(py_cmd)
source_bin_activate = mw.getPanelDir() + "/bin/activate"
py_cmd_dir = 'cd ' + mw.getPanelDir()
if os.path.exists(source_bin_activate):
py_cmd_dir += " source "+source_bin_activate
do_cmd = py_cmd_dir + " && "+ py_cmd
data = mw.execShell(do_cmd)
# print(data)
if mw.isDebugMode():
print('run:', py_cmd)
print('run:', do_cmd)
print(data)
# print os.path.exists(py_cmd)
return (data[0].strip(), data[1].strip())

Loading…
Cancel
Save