Browse code

Install packaged pyOpenSSL

pyOpenSSL has done a rewrite of itself in Python. This may be good
for many reasons, but memory usage is not one of them. It just about
doubles the size of at least swift, which usually consumes about 6% of
a CI testing vm's 8gb RAM. This is enough to push centos hosts into
OOM conditions and then everything falls apart.

The distro packages of pyOpenSSL are the older C-based versions, which
doesn't bring in the kitchen sink of cffi & pycparser.

Change-Id: Icd4100da1d5cbdb82017da046b00b9397813c2f2

Ian Wienand authored on 2015/03/27 12:43:14
Showing 1 changed files
... ...
@@ -27,3 +27,4 @@ gettext  # used for compiling message catalogs
27 27
 net-tools
28 28
 java-1.7.0-openjdk-headless  # NOPRIME rhel7,f20
29 29
 java-1.8.0-openjdk-headless  # NOPRIME f21,f22
30
+pyOpenSSL # version in pip uses too much memory
30 31
\ No newline at end of file