Fixed typo in the runsics script which prevents a 'kill -15' from executing.

This commit is contained in:
Ferdi Franceschini
2014-11-06 15:58:12 +11:00
parent 144f6ece2b
commit 95ffc5673a

View File

@ -120,7 +120,7 @@ def stop_cmd(server, args):
print 'Failed again!'
print "Terminating PID %d with EXTREME PREJUDICE (-15)" % (pid)
subprocess.call(shlex.split('sudo -u %s /bin/kill -15 %d' %
sics_killer, (pid)))
(sics_killer, pid)))
else:
return
if status_cmd(server, args) != (0,0):