HEX
Server: nginx/1.24.0
System: Linux prod-btpayments-io 6.14.0-1018-aws #18~24.04.1-Ubuntu SMP Mon Nov 24 19:46:27 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.3.19
Disabled: NONE
Upload Files
File: //usr/share/initramfs-tools/scripts/local-bottom/cryptopensc
#!/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