From 4061f85704a3e76fe87a91cf92d4a58015762ee2 Mon Sep 17 00:00:00 2001 From: Natalia Serrano Date: Fri, 6 Jun 2025 13:58:14 +0200 Subject: [PATCH] refs #2187 fix rc management in deployImage.py --- ogclient/scripts/deployImage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ogclient/scripts/deployImage.py b/ogclient/scripts/deployImage.py index 0fcc550..83ccafa 100755 --- a/ogclient/scripts/deployImage.py +++ b/ogclient/scripts/deployImage.py @@ -172,7 +172,7 @@ def main (repo, imgname, disk, par, proto='UNICAST', protoopt=''): # Registro de fin de ejecución # Si se ha llamado desde ejecutar script no lo muestro para no repetir. if SystemLib.ogGetCaller() != 'EjecutarScript': - ## turn shell's success into python success (without ending up with True or False, because later we want to ogEcho() "0"/"1" rather than ogEcho() "True"/"False") + ## turn shell's success into python success (without ending up with True or False, because we want to ogEcho() "0"/"1" rather than ogEcho() "True"/"False") if retval: retval = 0 else: retval = 1 SystemLib.ogEcho (['log', 'session'], None, f'{ogGlobals.lang.MSG_INTERFACE_END} {retval}')