Minor Fixes for Ubuntu 14.04 Legacy
This commit is contained in:
parent
7ffe27067c
commit
cd9d77bc56
2 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue