blob: a4c4f0fc276c1509662d741195e2da5025125c9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
## arg 1: the new package version
post_install() {
echo "You may need to restart pcscd for the driver to start working."
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
echo "You may need to restart pcscd for the driver to start working."
}
|