From b60aef4bd8f5f9e983ff48224f68000498535243 Mon Sep 17 00:00:00 2001 From: TimForbes <> Date: Mon, 10 Apr 2023 09:09:53 +0200 Subject: [PATCH] --- openvpn-install.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/openvpn-install.sh b/openvpn-install.sh index 64bad9e..690f7a0 100644 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -53,7 +53,7 @@ Supported distros are Ubuntu, Debian, AlmaLinux, Rocky Linux, CentOS and Fedora. esac -function check_os_version { +function check_os_version () { local required_version=$1 if [[ "$os_version" -lt "$required_version" ]]; then echo "$os_name $required_version or higher is required to use this installer. @@ -112,8 +112,6 @@ new_client () { } > ~/"$client".ovpn } -#!/bin/bash - if [[ ! -e /etc/openvpn/server/server.conf ]]; then # Check if wget or curl are installed, and install wget if neither is installed if ! command -v wget &>/dev/null && ! command -v curl &>/dev/null; then