FS#14884 - [ca-certificates-java] install scriptlet should check for keytool
Attached to Project:
Arch Linux
Opened by Gerardo Exequiel Pozzi (djgera) - Saturday, 30 May 2009, 17:52 GMT
Last edited by Jan de Groot (JGC) - Saturday, 13 June 2009, 12:38 GMT
Opened by Gerardo Exequiel Pozzi (djgera) - Saturday, 30 May 2009, 17:52 GMT
Last edited by Jan de Groot (JGC) - Saturday, 13 June 2009, 12:38 GMT
|
Details
Description: If no keytool is installed from some
java-runtime package the scriptlet will fail (executes
/usr/sbin/init-jks-keystore)
No supported JRE installed error: scriptlet failed to execute correctly Additional info: ca-certificates-java-20081028-1 |
This task depends upon
Closed by Jan de Groot (JGC)
Saturday, 13 June 2009, 12:38 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in 20081028-2.
Saturday, 13 June 2009, 12:38 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in 20081028-2.
post_install() {
if [ ! -f /etc/ssl/certs/java/cacerts ] && [ -x /usr/bin/keytool ]; then
/usr/sbin/init-jks-keystore
fi
}