So there was a recent security update for RHEL that breaks a library dependency for the Configuration Manager client and OMI.
/opt/microsoft/configmgr/bin/ccmexec.bin: error while loading shared libraries:
libssl.so.1.0.0: cannot open shared object file: No such file or directory
The issue is simple enough to fix with a sym link update.
sudo ln -sf /usr/lib64/libcrypto.so.10 /usr/lib64/libcrypto.so.1.0.0
sudo ln -sf /usr/lib64/libssl.so.10 /usr/lib64/libssl.so.1.0.0
Simple enough. If you are on x86 then change /usr/lib64 to just /usr/lib/
Special thanks to Morten Vinding for the best library to use.