We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aedbf4a + 3c1e713 commit 74b225cCopy full SHA for 74b225c
1 file changed
docker/entrypoint.sh
@@ -97,7 +97,11 @@ function step_ca_init () {
97
}
98
99
if [ -f /usr/sbin/pcscd ]; then
100
- /usr/sbin/pcscd
+ if [ -e /var/run/pcscd/pcscd.comm ]; then
101
+ echo "Using host pcscd (socket detected at /var/run/pcscd/pcscd.comm)"
102
+ else
103
+ /usr/sbin/pcscd --disable-polkit
104
+ fi
105
fi
106
107
if [ ! -f "${STEPPATH}/config/ca.json" ]; then
0 commit comments