How to detect if the rpm package installation's post install section code failed ?

I've got bunch of rpm packages and want to find the packages that have failed in post install section. Post install means, the bash script in post section of spec file.

link|improve this question

68% accept rate
feedback

1 Answer

The rpm database doesn't store the exit status of the scripts. The only way to know if it failed is at install time, the rpm command exits with the status of the scripts it ran.

link|improve this answer
Actually I resolved it already, there is a way how to retrieve it from rpm package, even if you open rpm package with hex editor you will see the corresponding info. – deimus Nov 25 '11 at 8:57
Using a hex editor to look at the scripts? You can always just do: rpm -qp --scripts package.rpm – Corey Henderson Nov 25 '11 at 21:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.