Hello and thanks ahead of time for any answers that anyone can provide for this question.
I have an RPM that is essentially a wrapper around an exploded WAR. On my server I run
rpm -i myRPM.rpm
this works just fine and all is right with the world. I then would like to run the rpm again with the --relocate trigger to create an identical install. Ideally I would like to have it install the application with a new entry in the rpm data base with an incremented instance or something of that nature.
I can force the install to happen by running
rpm -i --force --relocate OLDPATH=NEWPATH myRPM.rpm
The problem here however is that the old version is no longer managed by rpm. Is there anything I can do to make this work the way I want?