This commit is contained in:
Marc Beninca 2024-06-24 12:09:07 +02:00
parent 7a9ed2ee10
commit bc7498fba2
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

10
pidd.sh
View file

@ -717,8 +717,8 @@ pidd_ln_python() {
pidd_ln_python__command="${1}" pidd_ln_python__command="${1}"
if [ -n "${pidd_ln_python__command}" ]; then if [ -n "${pidd_ln_python__command}" ]; then
echo "${PIDD_PYTHON_ALIAS}${pidd_ln_python__command}" echo "${PIDD_PYTHON_ALIAS}${pidd_ln_python__command}"
ln -f -s "${pidd_ln_python__command}" "/usr/bin/${PIDD_PYTHON_ALIAS}" \ ln -f -s "${pidd_ln_python__command}" "/usr/bin/${PIDD_PYTHON_ALIAS}" ||
|| exit exit
fi fi
} }
@ -747,9 +747,9 @@ pidd_openssl() {
pidd_openssl__file="${1}" pidd_openssl__file="${1}"
if [ -f "${pidd_openssl__file}" ]; then if [ -f "${pidd_openssl__file}" ]; then
openssl x509 \ openssl x509 \
-in "${pidd_openssl__file}" \ -in "${pidd_openssl__file}" \
-noout -text \ -noout -text ||
|| exit exit
fi fi
} }