15 lines
295 B
Bash
15 lines
295 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
PATH=$PATH:/usr/local/bin
|
||
|
set -e
|
||
|
|
||
|
auth_usr=$(head -1 $1)
|
||
|
auth_token=$(tail -1 $1)
|
||
|
|
||
|
if [ $common_name = ${auth_usr} ]; then
|
||
|
openvpn-user auth --user ${auth_usr} --totp ${auth_token} # --db.path /etc/openvpn/easyrsa/pki/users.db
|
||
|
else
|
||
|
echo "Authorization failed"
|
||
|
exit 1
|
||
|
fi
|