Add missing space in functions name
This commit is contained in:
parent
d62acb67e1
commit
12e71985aa
1 changed files with 2 additions and 2 deletions
|
|
@ -159,7 +159,7 @@ function newClient () {
|
||||||
exit
|
exit
|
||||||
}
|
}
|
||||||
|
|
||||||
function revokeClient() {
|
function revokeClient () {
|
||||||
NUMBEROFCLIENTS=$(tail -n +2 /etc/openvpn/easy-rsa/pki/index.txt | grep -c "^V")
|
NUMBEROFCLIENTS=$(tail -n +2 /etc/openvpn/easy-rsa/pki/index.txt | grep -c "^V")
|
||||||
if [[ "$NUMBEROFCLIENTS" = '0' ]]; then
|
if [[ "$NUMBEROFCLIENTS" = '0' ]]; then
|
||||||
echo ""
|
echo ""
|
||||||
|
|
@ -196,7 +196,7 @@ function revokeClient() {
|
||||||
exit
|
exit
|
||||||
}
|
}
|
||||||
|
|
||||||
function removeOpenVPN() {
|
function removeOpenVPN () {
|
||||||
echo ""
|
echo ""
|
||||||
read -rp "Do you really want to remove OpenVPN? [y/n]: " -e -i n REMOVE
|
read -rp "Do you really want to remove OpenVPN? [y/n]: " -e -i n REMOVE
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue