aboutsummaryrefslogtreecommitdiffstats
path: root/ci.d/openssl
blob: 0165cc10488713cf66b602eb6bf1276d047a3aac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env sh

# openssl_fix_10
#
# Setup OpenSSL 1.0 for older Erlang versions.
openssl_fix_10() {
	lxc_do mkdir /root/openssl-1.0
	lxc_do ln -s /usr/include/openssl-1.0 /root/openssl-1.0/include
	lxc_do ln -s /usr/lib/openssl-1.0 /root/openssl-1.0/lib
	echo "lxc.environment = KERL_CONFIGURE_OPTIONS=--with-ssl=/root/openssl-1.0" \
		>> /home/lxc/$NAME/config
}