From dabb5814e52bdddc2170ca07d505bd6f895fa061 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 7 Sep 2024 12:19:16 +0200 Subject: [PATCH] pm/https --- spcd/bootstrap.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spcd/bootstrap.sh b/spcd/bootstrap.sh index 86910ee..3c57b99 100644 --- a/spcd/bootstrap.sh +++ b/spcd/bootstrap.sh @@ -1004,7 +1004,7 @@ spcd_f_pm_clean() { esac } -spcd_https_path() { +spcd_f_pm_https() { case "${SPCD_PM}" in "${SPCD_PM_APK}") echo "/etc/apk/repositories.d/https" ;; "${SPCD_PM_APT}") echo "/etc/apt/apt.conf.d/https" ;; @@ -1236,7 +1236,7 @@ spcd_step__packages_trust_https() { spcd_step "Trust HTTPS" local path text if [ -n "${SPCD_CA_1}" ] || [ "${SPCD_PM}" = "${SPCD_PM_APT}" ]; then - path="$(spcd_https_path)" + path="$(spcd_f_pm_https)" if [ -n "${path}" ]; then spcd_os_mkdir "$(dirname "${path}")" case "${SPCD_PM}" in @@ -1349,7 +1349,7 @@ spcd_step__ca_update_certificates() { spcd_step__packages_verify_https() { spcd_step "Verify HTTPS" local path - path="$(spcd_https_path)" + path="$(spcd_f_pm_https)" if [ -n "${path}" ]; then spcd_os_rm "${path}" fi