Update index.py

pull/109/head
midoks 6 years ago
parent 98bbc8af2f
commit fb43b4ac65
  1. 16
      plugins/jenkins/index.py

@ -80,9 +80,9 @@ def start():
return "Apple Computer does not support" return "Apple Computer does not support"
data = public.execShell('service jenkins start') data = public.execShell('service jenkins start')
if data[0] == '': if data[1] == '':
return 'ok' return 'ok'
return data[1] return 'fail'
def stop(): def stop():
@ -90,23 +90,23 @@ def stop():
return "Apple Computer does not support" return "Apple Computer does not support"
data = public.execShell('service jenkins stop') data = public.execShell('service jenkins stop')
if data[0] == '': if data[1] == '':
return 'ok' return 'ok'
return data[1] return 'fail'
def restart(): def restart():
data = public.execShell('service jenkins restart') data = public.execShell('service jenkins restart')
if data[0] == '': if data[1] == '':
return 'ok' return 'ok'
return data[1] return 'fail'
def reload(): def reload():
data = public.execShell('service jenkins restart') data = public.execShell('service jenkins restart')
if data[0] == '': if data[1] == '':
return 'ok' return 'ok'
return data[1] return 'fail'
def initdStatus(): def initdStatus():

Loading…
Cancel
Save