Updated Menu
This commit is contained in:
parent
671e21de3c
commit
230459c4e2
1 changed files with 8 additions and 3 deletions
|
|
@ -1276,7 +1276,7 @@ function manageMenu () {
|
|||
echo " 3) Remove OpenVPN"
|
||||
echo " 4) Exit"
|
||||
until [[ "$MENU_OPTION" =~ ^[1-4]$ ]]; do
|
||||
read -rp "Select an option [1-4]: " MENU_OPTION
|
||||
read -rp "Select an option [1-9]: " MENU_OPTION
|
||||
done
|
||||
|
||||
case $MENU_OPTION in
|
||||
|
|
@ -1286,10 +1286,15 @@ function manageMenu () {
|
|||
2)
|
||||
revokeClient
|
||||
;;
|
||||
3)
|
||||
4)
|
||||
listcerts
|
||||
;;
|
||||
|
||||
|
||||
8)
|
||||
removeOpenVPN
|
||||
;;
|
||||
4)
|
||||
9)
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
|
|
|||
Loading…
Reference in a new issue