cloudera-ps / prereq-checks

Prerequisites checker for Cloudera Manager and CDP PVC Base installations
GNU General Public License v3.0
57 stars 58 forks source link

Check JCE Files #115

Closed myloginid closed 4 years ago

myloginid commented 5 years ago

Please review

myloginid commented 5 years ago

Travis Reported -

In lib/checks.sh line 4:
    if $( ${1}/bin/jrunscript -e 'exit (javax.crypto.Cipher.getMaxAllowedKeyLength("RC5") >= 256 ? 0 : 1);' > /dev/null 2>&1 ); then
       ^-- SC2091: Remove surrounding $() to avoid executing output.
          ^-- SC2086: Double quote to prevent globbing and word splitting.
dbeech commented 4 years ago

Thanks @myloginid (merged, better late than never?)