diff options
author | Cevat Bostancioglu <bostancioglucevat@gmail.com> | 2019-06-28 01:27:24 +0300 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2019-07-03 08:38:39 -0400 |
commit | a7da69d1faaef9f679fcad76b4f63f2f2c6d4ada (patch) | |
tree | 60992ad89cec123dac08b60fcc63853015bd9132 | |
parent | ee9a745a731561b0daac49486b66b802ef3f69f6 (diff) | |
download | meta-virtualization-a7da69d1faaef9f679fcad76b4f63f2f2c6d4ada.tar.gz |
singularity: openssl cert configs path fixed.
openssl recipe moves ssl-1.1 directory as ssl , singularity recipe cannot find ssl-1.1 path.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/singularity/singularity_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-containers/singularity/singularity_git.bb b/recipes-containers/singularity/singularity_git.bb index 6fee8f35..e50052c2 100644 --- a/recipes-containers/singularity/singularity_git.bb +++ b/recipes-containers/singularity/singularity_git.bb | |||
@@ -30,6 +30,6 @@ pkg_postinst_${PN}() { | |||
30 | 30 | ||
31 | # python3 expects CA certificates to be installed in a different place to where | 31 | # python3 expects CA certificates to be installed in a different place to where |
32 | # they are actually installed. These lines link the two locations. | 32 | # they are actually installed. These lines link the two locations. |
33 | rm -r $D${libdir}/ssl-1.1/certs | 33 | rm -r $D${libdir}/ssl/certs |
34 | ln -sr $D${sysconfdir}/ssl/certs $D${libdir}/ssl-1.1 | 34 | ln -sr $D${sysconfdir}/ssl/certs $D${libdir}/ssl |
35 | } | 35 | } |