mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 09:43:03 +01:00
fix: add ca-certificates support for termux in run_toxic.sh
This commit is contained in:
parent
30d01127e7
commit
d3c4008b59
@ -277,6 +277,7 @@ echo '#!/usr/bin/env sh
|
|||||||
DEBIAN_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
DEBIAN_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
||||||
RHEL_SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
|
RHEL_SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
|
||||||
OPENSUSE_CERT_FILE=/etc/ssl/ca-bundle.pem
|
OPENSUSE_CERT_FILE=/etc/ssl/ca-bundle.pem
|
||||||
|
TERMUX_CERT_FILE=/data/data/com.termux/files/usr/etc/tls/cert.pem
|
||||||
|
|
||||||
if [ ! -f "$SSL_CERT_FILE" ] ; then
|
if [ ! -f "$SSL_CERT_FILE" ] ; then
|
||||||
if [ -f "$DEBIAN_SSL_CERT_FILE" ] ; then
|
if [ -f "$DEBIAN_SSL_CERT_FILE" ] ; then
|
||||||
@ -285,6 +286,8 @@ if [ ! -f "$SSL_CERT_FILE" ] ; then
|
|||||||
SSL_CERT_FILE="$RHEL_SSL_CERT_FILE"
|
SSL_CERT_FILE="$RHEL_SSL_CERT_FILE"
|
||||||
elif [ -f "$OPENSUSE_CERT_FILE" ] ; then
|
elif [ -f "$OPENSUSE_CERT_FILE" ] ; then
|
||||||
SSL_CERT_FILE="$OPENSUSE_CERT_FILE"
|
SSL_CERT_FILE="$OPENSUSE_CERT_FILE"
|
||||||
|
elif [ -f "$TERMUX_CERT_FILE" ] ; then
|
||||||
|
SSL_CERT_FILE="$TERMUX_CERT_FILE"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user