Estoy escribiendo una secuencia de comandos de implementación y necesito revertir si se produjo algún error.
P.ej:
#!/bin/bash
ssh myapp '
mkdir /some/dir
# check if above command failed, and execute rollback script if needed
'
# or maybe do it from here?
En este momento, cuando ejecuto este script, si mkdir falla, lo imprime en mi pantalla y continúa la ejecución. Necesito detectar ese error y hacer algo al respecto.