Minor Fixes for Ubuntu 14.04 Legacy

This commit is contained in:
earnolmartin 2023-02-07 11:00:03 -07:00
parent 7ffe27067c
commit cd9d77bc56
2 changed files with 2 additions and 2 deletions

View file

@ -3476,7 +3476,7 @@ function fixEHCPAutoReplyPostfixMasterCF(){
function fixUbuntu14SSL(){
openSSLVersion=$(openssl version | grep -o "OpenSSL 1.1.1b")
if [ -z "$openSSLVersion" ]; then
if [ -z "$openSSLVersion" ] || [ ! -e "${patchDir}/openssl-1.1.1b" ]; then
# Compile openssl 1.1.1b
origDir=$(pwd)
cd "$patchDir"

View file

@ -3097,7 +3097,7 @@ function preventUserCronFromWebUser(){
function fixUbuntu14SSL(){
openSSLVersion=$(openssl version | grep -o "OpenSSL 1.1.1b")
if [ -z "$openSSLVersion" ]; then
if [ -z "$openSSLVersion" ] || [ ! -e "${patchDir}/openssl-1.1.1b" ]; then
# Compile openssl 1.1.1b
origDir=$(pwd)
cd "$patchDir"