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:
@@ -143,7 +143,10 @@ class DeploymentRunner:
|
|||||||
proc = self._build_proc
|
proc = self._build_proc
|
||||||
self._abort = True
|
self._abort = True
|
||||||
if proc:
|
if proc:
|
||||||
proc.kill()
|
try:
|
||||||
|
proc.kill()
|
||||||
|
except:
|
||||||
|
log.debug("unable to kill", exc_info=True)
|
||||||
|
|
||||||
def final_install(self):
|
def final_install(self):
|
||||||
args = shlex.split(self.final_install_command)
|
args = shlex.split(self.final_install_command)
|
||||||
|
|||||||
Reference in New Issue
Block a user