blob: 169f32ddc25f7bc28ef1c8d8c2cb42a003c8db93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
## arg 1: the new package version
post_install() {
echo "--"
echo "You may have to enable and start pcscd (pcsclite) service, e.g."
echo " $ systemctl enable pcscd"
echo " $ systemctl start pcscd"
echo "If it's already running then you need to restart it."
echo " $ systemctl restart pcscd"
echo "--"
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
post_install
}
|