1
1
mirror of https://github.com/angristan/wireguard-install.git synced 2024-11-01 03:02:35 +00:00

List client command add

This commit is contained in:
XAedgeS 2021-11-07 13:21:39 +07:00
parent e64627cf16
commit 0e1ce77c89

View File

@ -404,6 +404,19 @@ function uninstallWg() {
fi fi
} }
fucntion listClient() {
NUMBER_OF_CLIENTS=$(grep -c -E "^### Client" "/etc/wireguard/${SERVER_WG_NIC}.conf")
if [[ ${NUMBER_OF_CLIENTS} == '0' ]]; then
echo ""
echo "You have no existing clients!"
exit 1
fi
echo ""
grep -E "^### Client" "/etc/wireguard/${SERVER_WG_NIC}.conf" | cut -d ' ' -f 3 | nl -s ') '
}
function manageMenu() { function manageMenu() {
echo "Welcome to WireGuard-install!" echo "Welcome to WireGuard-install!"
echo "The git repository is available at: https://github.com/angristan/wireguard-install" echo "The git repository is available at: https://github.com/angristan/wireguard-install"
@ -412,23 +425,27 @@ function manageMenu() {
echo "" echo ""
echo "What do you want to do?" echo "What do you want to do?"
echo " 1) Add a new user" echo " 1) Add a new user"
echo " 2) Revoke existing user" echo " 2) List all user"
echo " 3) Uninstall WireGuard" echo " 3) Revoke existing user"
echo " 4) Exit" echo " 4) Uninstall WireGuard"
until [[ ${MENU_OPTION} =~ ^[1-4]$ ]]; do echo " 5) Exit"
read -rp "Select an option [1-4]: " MENU_OPTION until [[ ${MENU_OPTION} =~ ^[1-5]$ ]]; do
read -rp "Select an option [1-5]: " MENU_OPTION
done done
case "${MENU_OPTION}" in case "${MENU_OPTION}" in
1) 1)
newClient newClient
;; ;;
2) 2)
revokeClient listClient
;; ;;
3) 3)
uninstallWg revokeClient
;; ;;
4) 4)
uninstallWg
;;
5)
exit 0 exit 0
;; ;;
esac esac