aboutsummaryrefslogtreecommitdiff
path: root/hasyubi
blob: 95fe37b791847ccb77b06ca636e232a27108e86d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/env sh

# WARNING: This (obiously) isn't a replacement for normal challenge-response verification.
# This only serves as an additional security measure IF YOU ALREADY TRUST YOUR ENVIRONMENT

SERIAL="YOURSERIAL"
connected=$(ykman list --serials 2>/dev/null)

if [ "$connected" = "$SERIAL" ]; then
	exit 0
else
	exit 1
fi