|
...
|
...
|
@@ -369,8 +369,7 @@ function deploy_int_CA {
|
|
369
|
369
|
function fix_system_ca_bundle_path {
|
|
370
|
370
|
if is_service_enabled tls-proxy; then
|
|
371
|
371
|
local capath
|
|
372
|
|
- local python_cmd=${1:-python}
|
|
373
|
|
- capath=$($python_cmd -c $'try:\n from requests import certs\n print (certs.where())\nexcept ImportError: pass')
|
|
|
372
|
+ capath=$(python3 -c $'try:\n from requests import certs\n print (certs.where())\nexcept ImportError: pass')
|
|
374
|
373
|
|
|
375
|
374
|
if [[ ! $capath == "" && ! $capath =~ ^/etc/.* && ! -L $capath ]]; then
|
|
376
|
375
|
if is_fedora; then
|