dockerfiles/yubico-piv-tool/entrypoint.sh
Jess Frazelle 3a10b0889e
update for shellcheck
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-24 18:36:11 -04:00

20 lines
286 B
Bash
Executable File

#!/bin/bash
set -e
set -o pipefail
init(){
local pcscd_running
pcscd_running=$(pgrep pcscd)
if [ -z "$pcscd_running" ]; then
echo "starting pcscd in backgroud"
pcscd --debug --apdu
pcscd --hotplug
else
echo "pcscd is running in already: ${pcscd_running}"
fi
}
init
"$@"