root@7471dedf6387:# pwd
/tmp/test/lib/
root@7471dedf6387:# ls
fips.so fipsmodule.cnf libcrypto.so.3 openssl.cnf
Providing the full path of the fipsmodule.cnf file inside openssl.cnf WORKS!
cat openssl.cnf
…..
.include /tmp/test/lib/fipsmodule.cnf
…..
Not providing the full path of the fipsmodule.cnf file inside openssl.cnf FAILS!!
cat openssl.cnf
…..
.include fipsmodule.cnf
.....
So, how to include the “fipsmodule.cnf” file without providing the FULL path inside openssl.cnf file, when both files are present inside the same directory?