pivpn/scripts/removeOVPN.sh

71 lines
1.9 KiB
Bash
Raw Normal View History

2016-04-19 18:01:55 +00:00
#!/usr/bin/env bash
# PiVPN: revoke client script
INSTALL_USER=$(cat /etc/pivpn/INSTALL_USER)
REVOKE_STATUS=$(cat /etc/pivpn/REVOKE_STATUS)
PLAT=$(cat /etc/pivpn/DET_PLATFORM)
2016-04-19 18:01:55 +00:00
INDEX="/etc/openvpn/easy-rsa/keys/index.txt"
2016-10-04 19:02:02 +00:00
if [ ! -f "$INDEX" ]; then
printf "The file: %s was not found\n" "$INDEX"
2016-04-19 18:01:55 +00:00
exit 1
fi
printf "\n"
printf " ::\e[4m Certificate List \e[0m:: \n"
i=0
2016-10-04 19:02:02 +00:00
while read -r line || [ -n "$line" ]; do
STATUS=$(echo "$line" | awk '{print $1}')
if [[ "$STATUS" = "V" ]]; then
NAME=$(echo "$line" | sed -e 's/^.*CN=\([^/]*\)\/.*/\1/')
CERTS[$i]=$NAME
if [ "$i" != 0 ]; then
2016-10-04 19:02:02 +00:00
# Prevent printing "server" certificate
printf " %s\n" "$NAME"
2016-04-19 18:01:55 +00:00
fi
let i=i+1
2016-04-19 18:01:55 +00:00
fi
done <$INDEX
printf "\n"
echo "::: Please enter the Name of the client to be revoked from the list above:"
2016-10-04 19:02:02 +00:00
read -r NAME
2016-04-19 18:01:55 +00:00
if [[ -z "$NAME" ]]; then
2016-10-04 19:02:02 +00:00
echo "::: You can not leave this blank!"
exit 1
fi
2016-10-04 19:02:02 +00:00
for((x=1;x<=i;++x)); do
if [ "${CERTS[$x]}" = "${NAME}" ]; then
VALID=1
fi
done
2016-10-04 19:02:02 +00:00
if [ -z "$VALID" ]; then
printf "::: You didn't enter a valid cert name!\n"
exit 1
fi
2016-10-04 19:02:02 +00:00
cd /etc/openvpn/easy-rsa || exit
2016-04-19 18:01:55 +00:00
source /etc/openvpn/easy-rsa/vars
2016-10-04 19:02:02 +00:00
./revoke-full "$NAME"
2016-04-19 18:01:55 +00:00
echo "::: Certificate revoked, removing ovpns from /home/$INSTALL_USER/ovpns"
2016-10-04 19:02:02 +00:00
rm "/home/$INSTALL_USER/ovpns/$NAME.ovpn"
2016-04-19 18:01:55 +00:00
cp /etc/openvpn/easy-rsa/keys/crl.pem /etc/openvpn/crl.pem
echo "::: Completed!"
2016-10-04 19:02:02 +00:00
if [ "$REVOKE_STATUS" == 0 ]; then
2016-04-19 18:01:55 +00:00
echo 1 > /etc/pivpn/REVOKE_STATUS
printf "\nThis seems to be the first time you have revoked a cert.\n"
printf "We are adding the CRL to the server.conf and restarting openvpn.\n"
sed -i '/#crl-verify/c\crl-verify /etc/openvpn/crl.pem' /etc/openvpn/server.conf
2016-05-25 21:58:08 +00:00
if [[ ${PLAT} == "Ubuntu" || ${PLAT} == "Debian" ]]; then
service openvpn restart
else
systemctl restart openvpn.service
fi
2016-04-19 18:01:55 +00:00
fi