diff --git a/public/tools/rmt-client-setup b/public/tools/rmt-client-setup index 5568e58ba..53c33e439 100755 --- a/public/tools/rmt-client-setup +++ b/public/tools/rmt-client-setup @@ -20,6 +20,10 @@ CA_GEN_TRUSTSTORE_CMD="/usr/bin/c_rehash" if [ -d "/etc/pki/trust/anchors/" ] && [ -x "/usr/sbin/update-ca-certificates" ]; then CA_TRUSTSTORE="/etc/pki/trust/anchors/" CA_GEN_TRUSTSTORE_CMD="/usr/sbin/update-ca-certificates" +elif [ -d "/etc/pki/ca-trust/source/anchors/" ] && [ -x "/usr/bin/update-ca-trust" ]; then + # this path is used on RES8 + CA_TRUSTSTORE="/etc/pki/ca-trust/source/anchors/" + CA_GEN_TRUSTSTORE_CMD="/usr/bin/update-ca-trust" elif [ -d $CA_TRUSTSTORE ] && [ -x $CA_GEN_TRUSTSTORE_CMD ]; then CA_GEN_TRUSTSTORE_CMD="$CA_GEN_TRUSTSTORE_CMD $CA_TRUSTSTORE" fi