Unlocks desktop using yubikey

This commit is contained in:
Nemo 2016-07-18 18:12:25 +05:30
parent 1d7c8ec071
commit 5b578f46dc
1 changed files with 10 additions and 0 deletions

10
yubi-insert.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
YUBIKEY_SERIAL=`cat /home/nemo/.yubikey-serial.txt`
DEVICE_SERIAL=`ykinfo -s | cut -d ' ' -f 2`
LOGFILE="/home/nemo/logs/auth.log"
# We only unlock the device if the key matches
if [[ "$YUBIKEY_SERIAL"="$DEVICE_SERIAL" ]]; then
echo "`date` unlocked using yubkikey" >> $LOGFILE
killall i3lock
fi