На одном из хостов накатили anaconda и переопределился путь к CA_BUNDLE
CAfile: /data/anaconda2/ssl/cacert.pem
вместо
CAfile: /etc/pki/tls/certs/ca-bundle.crt
это приводит к ругани в CURL
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: https://curl.haxx.se/docs/sslcerts.html
curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
временным решением является активация ENV
export CURL_CA_BUNDLE=/etc/ssl/certs/ca-bundle.crt
но эта все слетает после перезагрузки,
Как сменить путь по-умолчанию к папке с CAfile?