Remove clear screen

This commit is contained in:
hwdsl2 2022-05-19 23:56:19 -05:00
parent 5f18c2dbd7
commit ddd59ec95e

View File

@ -129,7 +129,7 @@ if [[ ! -e /etc/openvpn/server/server.conf ]]; then
apt-get update apt-get update
apt-get install -y wget apt-get install -y wget
fi fi
clear echo
echo 'Welcome to this OpenVPN road warrior installer!' echo 'Welcome to this OpenVPN road warrior installer!'
# If system has a single IPv4, it is selected automatically. Else, ask the user # If system has a single IPv4, it is selected automatically. Else, ask the user
if [[ $(ip -4 addr | grep inet | grep -vEc '127(\.[0-9]{1,3}){3}') -eq 1 ]]; then if [[ $(ip -4 addr | grep inet | grep -vEc '127(\.[0-9]{1,3}){3}') -eq 1 ]]; then
@ -189,10 +189,10 @@ if [[ ! -e /etc/openvpn/server/server.conf ]]; then
read -p "Protocol [1]: " protocol read -p "Protocol [1]: " protocol
done done
case "$protocol" in case "$protocol" in
1|"") 1|"")
protocol=udp protocol=udp
;; ;;
2) 2)
protocol=tcp protocol=tcp
;; ;;
esac esac
@ -459,7 +459,7 @@ verb 3" > /etc/openvpn/server/client-common.txt
echo "The client configuration is available in:" ~/"$client.ovpn" echo "The client configuration is available in:" ~/"$client.ovpn"
echo "New clients can be added by running this script again." echo "New clients can be added by running this script again."
else else
clear echo
echo "OpenVPN is already installed." echo "OpenVPN is already installed."
echo echo
echo "Select an option:" echo "Select an option:"