Hi everyone!
We are developing an application in python, and we are using RPM to install it. But sometimes, an error can happen during installation, and I can detect it. The question is, is there any way to cancel an installation if something is wrong? I tried to execute a "rpm -e package_name" command, but it's imposible because the system doesn't allow to run two RPM in parallel, so RPM is waiting my code to finish, and my code is waiting to first RPM to launch its own "rpm -e"
Thanks a lot in advance!!