1
0
mirror of https://github.com/IEEE-SB-Passau/pelican-deployment-system.git synced 2017-09-06 16:35:38 +02:00

we only try to kill

This commit is contained in:
2016-06-14 16:35:50 +02:00
parent cb2dbb4299
commit 7566dc6356

View File

@@ -143,7 +143,10 @@ class DeploymentRunner:
proc = self._build_proc
self._abort = True
if proc:
proc.kill()
try:
proc.kill()
except:
log.debug("unable to kill", exc_info=True)
def final_install(self):
args = shlex.split(self.final_install_command)