Last active
August 29, 2015 13:58
-
-
Save ChrisMcKee/10073152 to your computer and use it in GitHub Desktop.
Install openssl from source for Heatbleed patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Installing OpenSSL" | |
yum -y -q install gcc gcc-c++ make pcre-devel zlib-devel unzip wget > /dev/null | |
mkdir -p /src | |
cd /src | |
# download openssl centos 6.x | |
wget -cnv --progress=bar http://www.openssl.org/source/openssl-1.0.1g.tar.gz | |
tar xvzf openssl-1.0.1g.tar.gz | |
cd openssl-1.0.1g | |
./config shared enable-tlsext --prefix=/usr/local --openssldir=/usr/local/ssl | |
make clean | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ubuntu 12 LTS now has the openssl update (7-april-2014 1:51am)