blob: ce9dd7e01d49a4b2e83a23fa49a5139c6509dc1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
echo "Note: You may need to restart 'pcscd.service' for it to recognize tokens."
echo ""
echo "Note: The PKCS#11 library has been removed from /usr/lib (due to file"
echo " conflicts with the newer sac-core) as well as /usr/lib/pkcs11"
echo " (due to it loading the wrong OpenSSL version and crashing)."
echo ""
echo " Instead, it MUST be loaded via \"/usr/lib/sac-10.0/libeToken.so\"."
echo ""
echo " Please update your program configuration."
}
post_upgrade() {
post_install
}
# vim: ts=2:sw=2:et:
|