123456789101112131415161718192021222324252627282930313233343536 |
- #!/bin/bash
- export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
- NUMBER_OF_CLIENTS=$(grep -c -E "^### " "/var/lib/premium-script/data-user-pptp")
- if [[ ${NUMBER_OF_CLIENTS} == '0' ]]; then
- echo ""
- echo "You have no existing clients!"
- exit 1
- fi
- echo ""
- echo " Select the existing client you want to remove"
- echo " Press CTRL+C to return"
- echo " ==============================="
- echo " No Expired User"
- grep -E "^### " "/var/lib/premium-script/data-user-pptp" | cut -d ' ' -f 2-3 | nl -s ') '
- until [[ ${CLIENT_NUMBER} -ge 1 && ${CLIENT_NUMBER} -le ${NUMBER_OF_CLIENTS} ]]; do
- if [[ ${CLIENT_NUMBER} == '1' ]]; then
- read -rp "Select One Client[1]: " CLIENT_NUMBER
- else
- read -rp "Select One Client [1-${NUMBER_OF_CLIENTS}]: " CLIENT_NUMBER
- fi
- done
- # match the selected number to a client name
- VPN_USER=$(grep -E "^### " "/var/lib/premium-script/data-user-pptp" | cut -d ' ' -f 2 | sed -n "${CLIENT_NUMBER}"p)
- exp=$(grep -E "^### " "/var/lib/premium-script/data-user-pptp" | cut -d ' ' -f 3 | sed -n "${CLIENT_NUMBER}"p)
- # Delete VPN user
- sed -i '/^"'"$VPN_USER"'" pptpd/d' /etc/ppp/chap-secrets
- sed -i "/^### $VPN_USER $exp/d" /var/lib/premium-script/data-user-pptp
- # Update file attributes
- chmod 600 /etc/ppp/chap-secrets* /etc/ipsec.d/passwd*
- clear
- echo " PPTP Account Has Been Successfully Deleted"
- echo " =========================="
- echo " Client Name : $VPN_USER"
- echo " Expired On : $exp"
- echo " =========================="
|