runner: fix syntax when stopping all processes.

parent 0e91a8db
......@@ -456,7 +456,7 @@ def svcStopAll(config):
"""Stop all Instance processes on this computer"""
try:
return Popen([config['slapos'], 'node', 'supervisorctl', '--cfg', config['configuration_file_path'],
'stop' 'all']).communicate()[0]
'stop', 'all']).communicate()[0]
except:
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