- add temporary triggerpostun to reinstate the symlinks

This commit is contained in:
Tomáš Mráz 2009-01-17 20:48:44 +00:00
parent 105eb2ce8f
commit 7e0fce6fea
1 changed files with 13 additions and 0 deletions

View File

@ -413,7 +413,20 @@ fi
%postun
/sbin/ldconfig -X
%triggerpostun -- openssl < 0.9.8j
[ $1 != 0 ] || exit 0
if [ "$(readlink /%{_lib}/libcrypto.so.7)" != libcrypto.so.%{version} ] ; then
ln -sf libcrypto.so.%{version} /%{_lib}/libcrypto.so.7 || :
fi
if [ "$(readlink /%{_lib}/libssl.so.7)" != libssl.so.%{version} ] ; then
ln -sf libssl.so.%{version} /%{_lib}/libssl.so.7 || :
fi
/sbin/ldconfig -X
%changelog
* Sat Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 0.9.8j-5
- add temporary triggerpostun to reinstate the symlinks
* Sat Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 0.9.8j-4
- no pairwise key tests in non-fips mode (#479817)