-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libcrypt symlink for ssh #1022
Comments
Thanks for the report. A PR is on its way to fix this. |
Thank you @mayeut! |
Due to the manual removal of glibc's supplied
/lib64/libcrypt.so.1
in pursuit of #305, the use ofyum
-installedssh-agent
from theopenssh-clients
package for CI work no longer functions in themanylinux2014
docker image.The error is the following:
ssh-agent: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
.ssh-agent
seems to be stubborn regarding the location oflibcrypt
and cannot be persuaded withLD_LIBRARY_PATH
. I'm not sure what finally broke it since the changes regardinglibcrypt
are fairly old.I would suggest the addition of a
ln -s /usr/local/lib/libcrypt.so.1 /lib64/libcrypt.so.1
or similar. I'm quite okay with awontfix
due to other possible conflicts that I cannot foresee or refusal to support packages installed after docker start (understandable) as well since I can fix this in each run with minimal effort, but it might be nice for others, too.The text was updated successfully, but these errors were encountered: