Merge branch 'install-fix-python-ssl-workaround' of https://github.com/Robbt/libretime into Robbt-install-fix-python-ssl-workaround

This commit is contained in:
Robb Ebright 2017-03-11 09:56:46 -05:00
commit 880496c20f
2 changed files with 14 additions and 1 deletions

View File

@ -491,6 +491,14 @@ verbose "\n * Installing necessary python services..."
loudCmd "pip install setuptools --upgrade"
verbose "...Done"
if [[ `lsb_release -rs` == "14.04" ]] # Ubuntu trusty needs a workaround for python version SSL downloads
then
loudCmd "pip install pyOpenSSL cryptography idna certifi"
fi
verbose "\n * Creating /run/airtime..."
mkdir -p /run/airtime
chmod 755 /run/airtime

View File

@ -66,4 +66,9 @@ liquidsoap-plugin-vorbis
silan
libopus0
sysvinit-utils
sysvinit-utils
build-essential
libssl-dev
libffi-dev
python-dev