mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:37:14 +08:00
16 lines
221 B
Plaintext
16 lines
221 B
Plaintext
post_install() {
|
|
if [ ! -f etc/ssl/certs/java/cacerts ]; then
|
|
if which java >/dev/null 2>&1; then
|
|
usr/bin/init-jks-keystore
|
|
fi
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
post_remove() {
|
|
rm -rf etc/ssl/certs/java
|
|
}
|