Index: tools/pkgr_an_d_get.sh ================================================================== --- tools/pkgr_an_d_get.sh +++ tools/pkgr_an_d_get.sh @@ -55,21 +55,21 @@ PKGR_CLIENT_URI=https://urn.to/r/pkg_client_full PKGR_TMP_FILE=pkgrd_tmp_file.zip PKGR_GET_OK=0 if [ -x "$(command -v wget)" ]; then - for wgetArg in "" "--no-check-certificate" + for wgetArg in "" "" do if wget -4 $wgetArg "--output-document=${PKGR_TMP_FILE}" "${PKGR_CLIENT_URI}"; then if [ -f "${PKGR_TMP_FILE}" ]; then PKGR_GET_OK=1 break fi fi done else - for curlArg in "" "--insecure" + for curlArg in "" "" do if curl -4 $curlArg --location "${PKGR_CLIENT_URI}" > "${PKGR_TMP_FILE}"; then if [ -f "${PKGR_TMP_FILE}" ]; then PKGR_GET_OK=1 break Index: tools/pkgr_an_d_install.sh ================================================================== --- tools/pkgr_an_d_install.sh +++ tools/pkgr_an_d_install.sh @@ -88,21 +88,21 @@ PKGR_CLIENT_URI=https://urn.to/r/pkg_client_full PKGR_TMP_FILE=${PKGR_TMP_DIR}/pkgrd_tmp_${PKGR_TMP_ID}_file.zip PKGR_GET_OK=0 if [ -x "$(command -v wget)" ]; then - for wgetArg in "" "--no-check-certificate" + for wgetArg in "" "" do if wget -4 $wgetArg "--output-document=${PKGR_TMP_FILE}" "${PKGR_CLIENT_URI}"; then if [ -f "${PKGR_TMP_FILE}" ]; then PKGR_GET_OK=1 break fi fi done else - for curlArg in "" "--insecure" + for curlArg in "" "" do if curl -4 $curlArg --location "${PKGR_CLIENT_URI}" > "${PKGR_TMP_FILE}"; then if [ -f "${PKGR_TMP_FILE}" ]; then PKGR_GET_OK=1 break