Adding debian version 2:2.7.5-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
309c0fd158
commit
74b680e410
182 changed files with 18186 additions and 0 deletions
32
debian/initramfs/scripts/local-bottom/cryptopensc
vendored
Normal file
32
debian/initramfs/scripts/local-bottom/cryptopensc
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
PREREQ=""
|
||||
|
||||
prereqs()
|
||||
{
|
||||
echo "$PREREQ"
|
||||
}
|
||||
|
||||
case $1 in
|
||||
prereqs)
|
||||
prereqs
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
# Hook for stopping smartcard reading software
|
||||
|
||||
if [ ! -x /usr/sbin/pcscd ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
. /scripts/functions
|
||||
|
||||
if PID="$(cat /run/pcscd.pid)" 2>/dev/null &&
|
||||
[ "$(readlink -f "/proc/$PID/exe")" = "/usr/sbin/pcscd" ]; then
|
||||
log_begin_msg "Stopping pcscd"
|
||||
kill -TERM "$PID"
|
||||
log_end_msg
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue