I support a perl script that starts the automatic installation of our core server software. One of the new requirements is the installation of the Inline :: Java module.
Our usual installation strategy using Yum seems to crash because yum does not have Inline :: Java. I can not find the RPM release for it, so I can not install it as an RPM. The only parameters are apparently set via CPAN or send tar and have a step that identifies the location of the SDK and runs perl Makefile.PL J2SDK =; do; make install '.
Instinctively, I think itโs a little difficult for an unattended installation, I had problems with CPAN installations that have not been done in the past, and I really donโt want it on a real server, but I canโt come up with a better option.
Another option I was considering was just to send the .pm file, putting it in a user directory and using "use lib" to determine this as a location, but because of the way Inline :: Java works, I donโt think it maybe he needs an InlineJavaServer location, etc.
Does anyone have a better solution or opinion on which of the above are the best?
source share