blob: 0787545b9328344d669eeef1c7f666bccff87300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
if [ ! -f /etc/ssl/certs/java/cacerts ]; then
/usr/sbin/init-jks-keystore
fi
}
post_upgrade() {
if [ ! -f /etc/ssl/certs/java/cacerts ]; then
/usr/sbin/init-jks-keystore
fi
}
|