runner: fix syntax when stopping all processes.

parent 0e91a8db
...@@ -456,7 +456,7 @@ def svcStopAll(config): ...@@ -456,7 +456,7 @@ def svcStopAll(config):
"""Stop all Instance processes on this computer""" """Stop all Instance processes on this computer"""
try: try:
return Popen([config['slapos'], 'node', 'supervisorctl', '--cfg', config['configuration_file_path'], return Popen([config['slapos'], 'node', 'supervisorctl', '--cfg', config['configuration_file_path'],
'stop' 'all']).communicate()[0] 'stop', 'all']).communicate()[0]
except: except:
pass pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment