dockerfiles/yubico-piv-tool/entrypoint.sh
Jessica Frazelle 6f4c42fffb
update yubico-piv-tool
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
2015-10-31 22:14:28 -07:00

17 lines
259 B
Bash
Executable File

#!/bin/bash
init(){
local pcscd_running=$(ps -aux | grep [p]cscd)
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
"$@"