d/pcscd.postinst: removed as pcscd is already automatically restarted.

This commit is contained in:
Ludovic Rousseau 2021-12-22 15:11:06 +01:00
parent 7376c48fb2
commit 935e0eaeaa
2 changed files with 2 additions and 31 deletions

2
debian/changelog vendored
View File

@ -2,6 +2,8 @@ pcsc-lite (1.9.5-2) UNRELEASED; urgency=medium
* Fix "debian/copyright contains links to Alioth" by updating URLs
(Closes: #1001325)
* d/pcscd.postinst: removed as pcscd is already automatically restarted.
Thanks to Uwe Kleine-König for the notice in #1001155.
-- Ludovic Rousseau <rousseau@debian.org> Fri, 10 Dec 2021 14:10:22 +0100

31
debian/pcscd.postinst vendored
View File

@ -1,31 +0,0 @@
#! /bin/sh
# postinst script for libccid
#
# see: dh_installdeb(1)
set -e
case "$1" in
configure|reconfigure)
# restart pcscd (PCSC daemon)
invoke-rc.d pcscd restart
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0