I have just upgraded my ET-5000 to openpli 2.1, I used the nightly build of 12 February. Everything when smooth, with almost no problems. I wanted to use SCAM but it did not work "out of the box" after installing it with the plugin manager. So I had to go hands-on using a telnet connection. I experienced the following:
root@et5x00:~# /etc/init.d/softcam.scam start /usr/bin/scam_3.60: error while loading shared libraries: libssl.so.0.9.7: cannot open shared object file: No such file or directory
I found a workaround by created a symlink to the existing libssl.so.0.9.8
root@et5x00:~# ln -s /usr/lib/libssl.so.0.9.8 /usr/lib/libssl.so.0.9.7
It was not good yet:
root@et5x00:~# /etc/init.d/softcam.scam start /usr/bin/scam_3.60: error while loading shared libraries: libcrypto.so.0.9.7: cannot open shared object file: No such file or directory
I did the same trick as for the previous library:
root@et5x00:~# ln -s /usr/lib/libcrypto.so.0.9.8 /usr/lib/libcrypto.so.0.9.7
And voila, scam was up and running. It'd be nice that the bug is patched somehow.